Class GrpcServiceClient.SingleValueStreamObserver<T>
java.lang.Object
io.helidon.microprofile.grpc.client.GrpcServiceClient.SingleValueStreamObserver<T>
- Type Parameters:
T- The type of objects received in this stream.
- All Implemented Interfaces:
io.grpc.stub.StreamObserver<T>
- Enclosing class:
GrpcServiceClient
public static class GrpcServiceClient.SingleValueStreamObserver<T>
extends Object
implements io.grpc.stub.StreamObserver<T>
A simple
StreamObserver adapter class that completes
a CompletableFuture when the observer is completed.
This observer uses the value passed to its onNext(Object) method to complete
the CompletableFuture.
This observer should only be used in cases where a single result is expected. If more
that one call is made to onNext(Object) then future will be completed with
an exception.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionObtain theCompletableFuturethat will be completed when theStreamObservercompletes.voidvoidvoid
-
Constructor Details
-
SingleValueStreamObserver
public SingleValueStreamObserver()Create a SingleValueStreamObserver.
-
-
Method Details
-
completionStage
Obtain theCompletableFuturethat will be completed when theStreamObservercompletes.- Returns:
- The CompletableFuture
-
onNext
- Specified by:
onNextin interfaceio.grpc.stub.StreamObserver<T>
-
onError
- Specified by:
onErrorin interfaceio.grpc.stub.StreamObserver<T>
-
onCompleted
public void onCompleted()- Specified by:
onCompletedin interfaceio.grpc.stub.StreamObserver<T>
-