Class PingPongGrpc.PingPongImplBase
- java.lang.Object
-
- org.apache.camel.quarkus.component.grpc.it.model.PingPongGrpc.PingPongImplBase
-
- All Implemented Interfaces:
io.grpc.BindableService
- Direct Known Subclasses:
PingPongImpl
- Enclosing class:
- PingPongGrpc
public abstract static class PingPongGrpc.PingPongImplBase extends Object implements io.grpc.BindableService
The PingPong service definition.
-
-
Constructor Summary
Constructors Constructor Description PingPongImplBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.grpc.ServerServiceDefinitionbindService()io.grpc.stub.StreamObserver<PingRequest>pingAsyncAsync(io.grpc.stub.StreamObserver<PongResponse> responseObserver)Sending ping message asynchronously and getting pong answer asynchronously in streaming mode (multiple response messages)io.grpc.stub.StreamObserver<PingRequest>pingAsyncSync(io.grpc.stub.StreamObserver<PongResponse> responseObserver)Sending ping message asynchronously and getting pong answer synchronouslyvoidpingSyncAsync(PingRequest request, io.grpc.stub.StreamObserver<PongResponse> responseObserver)Sending ping message synchronously and getting pong answer asynchronously in streaming mode (multiple response messages)voidpingSyncSync(PingRequest request, io.grpc.stub.StreamObserver<PongResponse> responseObserver)Sending ping message and getting pong answer synchronously
-
-
-
Method Detail
-
pingSyncSync
public void pingSyncSync(PingRequest request, io.grpc.stub.StreamObserver<PongResponse> responseObserver)
Sending ping message and getting pong answer synchronously
-
pingSyncAsync
public void pingSyncAsync(PingRequest request, io.grpc.stub.StreamObserver<PongResponse> responseObserver)
Sending ping message synchronously and getting pong answer asynchronously in streaming mode (multiple response messages)
-
pingAsyncSync
public io.grpc.stub.StreamObserver<PingRequest> pingAsyncSync(io.grpc.stub.StreamObserver<PongResponse> responseObserver)
Sending ping message asynchronously and getting pong answer synchronously
-
pingAsyncAsync
public io.grpc.stub.StreamObserver<PingRequest> pingAsyncAsync(io.grpc.stub.StreamObserver<PongResponse> responseObserver)
Sending ping message asynchronously and getting pong answer asynchronously in streaming mode (multiple response messages)
-
bindService
public final io.grpc.ServerServiceDefinition bindService()
- Specified by:
bindServicein interfaceio.grpc.BindableService
-
-