Uses of Class
io.grpc.ClientCall
-
-
Uses of ClientCall in io.grpc
Subclasses of ClientCall in io.grpc Modifier and Type Class Description static classClientInterceptors.CheckedForwardingClientCall<ReqT,RespT>AForwardingClientCallthat delivers exceptions from its start logic to the call listener.classForwardingClientCall<ReqT,RespT>AClientCallwhich forwards all of its methods to anotherClientCall.static classForwardingClientCall.SimpleForwardingClientCall<ReqT,RespT>A simplified version ofForwardingClientCallwhere subclasses can pass in aClientCallas 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 aClientCallto 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)
-