Uses of Class
io.grpc.stub.BlockingClientCall
-
Packages that use BlockingClientCall Package Description io.grpc.health.v1 io.grpc.lb.v1 io.grpc.reflection.v1 io.grpc.reflection.v1alpha io.grpc.stub API for the Stub layer. -
-
Uses of BlockingClientCall in io.grpc.health.v1
Methods in io.grpc.health.v1 that return BlockingClientCall Modifier and Type Method Description BlockingClientCall<?,HealthCheckResponse>
HealthGrpc.HealthBlockingV2Stub. watch(HealthCheckRequest request)
Performs a watch for the serving status of the requested service. -
Uses of BlockingClientCall in io.grpc.lb.v1
Methods in io.grpc.lb.v1 that return BlockingClientCall Modifier and Type Method Description BlockingClientCall<LoadBalanceRequest,LoadBalanceResponse>
LoadBalancerGrpc.LoadBalancerBlockingV2Stub. balanceLoad()
Bidirectional rpc to get a list of servers. -
Uses of BlockingClientCall in io.grpc.reflection.v1
Methods in io.grpc.reflection.v1 that return BlockingClientCall Modifier and Type Method Description BlockingClientCall<ServerReflectionRequest,ServerReflectionResponse>
ServerReflectionGrpc.ServerReflectionBlockingV2Stub. serverReflectionInfo()
The reflection service is structured as a bidirectional stream, ensuring all related requests go to a single server. -
Uses of BlockingClientCall in io.grpc.reflection.v1alpha
Methods in io.grpc.reflection.v1alpha that return BlockingClientCall Modifier and Type Method Description BlockingClientCall<ServerReflectionRequest,ServerReflectionResponse>
ServerReflectionGrpc.ServerReflectionBlockingV2Stub. serverReflectionInfo()
The reflection service is structured as a bidirectional stream, ensuring all related requests go to a single server. -
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(Channel channel, MethodDescriptor<ReqT,RespT> method, 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(Channel channel, MethodDescriptor<ReqT,RespT> method, CallOptions callOptions)
Initiates a server streaming call and sends the specified request to the server.static <ReqT,RespT>
BlockingClientCall<ReqT,RespT>ClientCalls. blockingV2ServerStreamingCall(Channel channel, MethodDescriptor<ReqT,RespT> method, CallOptions callOptions, ReqT req)
Initiates a client streaming call over the specified channel.
-