Uses of Class
io.grpc.stub.BlockingClientCall
-
Packages that use BlockingClientCall Package Description io.grpc.stub API for the Stub layer. -
-
Uses of BlockingClientCall in io.grpc.stub
Methods in io.grpc.stub that return BlockingClientCall Modifier and Type Method Description static <ReqT,RespT>
BlockingClientCall<ReqT,RespT>ClientCalls. blockingBidiStreamingCall(io.grpc.Channel channel, io.grpc.MethodDescriptor<ReqT,RespT> method, io.grpc.CallOptions callOptions)
Initiate a bidirectional-streamingClientCall
and returning a stream object (BlockingClientCall
) which can be used by the client to send and receive messages over the grpc channel.static <ReqT,RespT>
BlockingClientCall<ReqT,RespT>ClientCalls. blockingClientStreamingCall(io.grpc.Channel channel, io.grpc.MethodDescriptor<ReqT,RespT> method, io.grpc.CallOptions callOptions)
Initiates a server streaming call and sends the specified request to the server.static <ReqT,RespT>
BlockingClientCall<ReqT,RespT>ClientCalls. blockingV2ServerStreamingCall(io.grpc.Channel channel, io.grpc.MethodDescriptor<ReqT,RespT> method, io.grpc.CallOptions callOptions, ReqT req)
Initiates a client streaming call over the specified channel.
-