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.
-