Uses of Class
io.grpc.ClientCall
-
Packages that use ClientCall Package Description io.grpc The gRPC core public API.io.grpc.auth Implementations ofCallCredentials
and authentication related API.io.grpc.stub API for the Stub layer. -
-
Uses of ClientCall in io.grpc
Subclasses of ClientCall in io.grpc Modifier and Type Class Description static class
ClientInterceptors.CheckedForwardingClientCall<ReqT,โRespT>
AForwardingClientCall
that delivers exceptions from its start logic to the call listener.class
ForwardingClientCall<ReqT,โRespT>
AClientCall
which forwards all of its methods to anotherClientCall
.static class
ForwardingClientCall.SimpleForwardingClientCall<ReqT,โRespT>
A simplified version ofForwardingClientCall
where subclasses can pass in aClientCall
as the delegate.Methods in io.grpc that return ClientCall Modifier and Type Method Description protected ClientCall<ReqT,โRespT>
ClientInterceptors.CheckedForwardingClientCall. delegate()
protected abstract ClientCall<ReqT,โRespT>
ForwardingClientCall. delegate()
Returns the delegatedClientCall
.protected ClientCall<ReqT,โRespT>
ForwardingClientCall.SimpleForwardingClientCall. delegate()
<ReqT,โRespT>
ClientCall<ReqT,โRespT>ClientInterceptor. interceptCallโ(MethodDescriptor<ReqT,โRespT> method, CallOptions callOptions, Channel next)
abstract <RequestT,โResponseT>
ClientCall<RequestT,โResponseT>Channel. newCallโ(MethodDescriptor<RequestT,โResponseT> methodDescriptor, CallOptions callOptions)
Create aClientCall
to the remote operation specified by the givenMethodDescriptor
.Constructors in io.grpc with parameters of type ClientCall Constructor Description CheckedForwardingClientCallโ(ClientCall<ReqT,โRespT> delegate)
SimpleForwardingClientCallโ(ClientCall<ReqT,โRespT> delegate)
-
Uses of ClientCall in io.grpc.auth
Methods in io.grpc.auth that return ClientCall Modifier and Type Method Description <ReqT,โRespT>
ClientCall<ReqT,โRespT>ClientAuthInterceptor. interceptCallโ(MethodDescriptor<ReqT,โRespT> method, CallOptions callOptions, Channel next)
Deprecated. -
Uses of ClientCall in io.grpc.stub
Methods in io.grpc.stub with parameters of type ClientCall Modifier and Type Method Description static <ReqT,โRespT>
StreamObserver<ReqT>ClientCalls. asyncBidiStreamingCallโ(ClientCall<ReqT,โRespT> call, StreamObserver<RespT> responseObserver)
Executes a bidirectional-streaming call.static <ReqT,โRespT>
StreamObserver<ReqT>ClientCalls. asyncClientStreamingCallโ(ClientCall<ReqT,โRespT> call, StreamObserver<RespT> responseObserver)
Executes a client-streaming call returning aStreamObserver
for the request messages.static <ReqT,โRespT>
voidClientCalls. asyncServerStreamingCallโ(ClientCall<ReqT,โRespT> call, ReqT req, StreamObserver<RespT> responseObserver)
Executes a server-streaming call with a responseStreamObserver
.static <ReqT,โRespT>
voidClientCalls. asyncUnaryCallโ(ClientCall<ReqT,โRespT> call, ReqT req, StreamObserver<RespT> responseObserver)
Executes a unary call with a responseStreamObserver
.static <ReqT,โRespT>
Iterator<RespT>ClientCalls. blockingServerStreamingCallโ(ClientCall<ReqT,โRespT> call, ReqT req)
Executes a server-streaming call returning a blockingIterator
over the response stream.static <ReqT,โRespT>
RespTClientCalls. blockingUnaryCallโ(ClientCall<ReqT,โRespT> call, ReqT req)
Executes a unary call and blocks on the response.static <ReqT,โRespT>
com.google.common.util.concurrent.ListenableFuture<RespT>ClientCalls. futureUnaryCallโ(ClientCall<ReqT,โRespT> call, ReqT req)
Executes a unary call and returns aListenableFuture
to the response.
-