Uses of Class
io.grpc.ClientCall
-
-
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)
-