Uses of Class
io.grpc.stub.CallStreamObserver
-
Packages that use CallStreamObserver Package Description io.grpc.stub API for the Stub layer. -
-
Uses of CallStreamObserver in io.grpc.stub
Subclasses of CallStreamObserver in io.grpc.stub Modifier and Type Class Description class
ClientCallStreamObserver<ReqT>
A refinement ofCallStreamObserver
that allows for lower-level interaction with client calls.class
ServerCallStreamObserver<RespT>
A refinement ofCallStreamObserver
to allows for interaction with call cancellation events on the server side.Methods in io.grpc.stub with parameters of type CallStreamObserver Modifier and Type Method Description static <V> void
StreamObservers. copyWithFlowControl(Iterable<V> source, CallStreamObserver<V> target)
Deprecated.Copy the values of anIterable
to the targetCallStreamObserver
while properly accounting for outbound flow-control.static <V> void
StreamObservers. copyWithFlowControl(Iterator<V> source, CallStreamObserver<V> target)
Deprecated.Copy the values of anIterator
to the targetCallStreamObserver
while properly accounting for outbound flow-control.
-