Class PingPongImpl
java.lang.Object
org.apache.camel.quarkus.component.grpc.it.model.PingPongGrpc.PingPongImplBase
org.apache.camel.quarkus.component.grpc.it.PingPongImpl
- All Implemented Interfaces:
io.grpc.BindableService,PingPongGrpc.AsyncService
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionio.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)voidpingSyncAsync(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 synchronouslyMethods inherited from class org.apache.camel.quarkus.component.grpc.it.model.PingPongGrpc.PingPongImplBase
bindServiceMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.camel.quarkus.component.grpc.it.model.PingPongGrpc.AsyncService
pingAsyncSync
-
Field Details
-
GRPC_TEST_PONG_VALUE
- See Also:
-
-
Constructor Details
-
PingPongImpl
public PingPongImpl()
-
-
Method Details
-
pingSyncSync
public void pingSyncSync(PingRequest request, io.grpc.stub.StreamObserver<PongResponse> responseObserver) Description copied from interface:PingPongGrpc.AsyncServiceSending ping message and getting pong answer synchronously
-
pingSyncAsync
public void pingSyncAsync(PingRequest request, io.grpc.stub.StreamObserver<PongResponse> responseObserver) Description copied from interface:PingPongGrpc.AsyncServiceSending ping message synchronously and getting pong answer asynchronously in streaming mode (multiple response messages)
-
pingAsyncAsync
public io.grpc.stub.StreamObserver<PingRequest> pingAsyncAsync(io.grpc.stub.StreamObserver<PongResponse> responseObserver) Description copied from interface:PingPongGrpc.AsyncServiceSending ping message asynchronously and getting pong answer asynchronously in streaming mode (multiple response messages)
-