Uses of Class
io.grpc.ClientCall.Listener
-
Packages that use ClientCall.Listener Package Description io.grpc The gRPC core public API. -
-
Uses of ClientCall.Listener in io.grpc
Subclasses of ClientCall.Listener in io.grpc Modifier and Type Class Description class
ForwardingClientCallListener<RespT>
AClientCall.Listener
which forwards all of its methods to anotherClientCall.Listener
.static class
ForwardingClientCallListener.SimpleForwardingClientCallListener<RespT>
A simplified version ofForwardingClientCallListener
where subclasses can pass in aClientCall.Listener
as the delegate.Methods in io.grpc that return ClientCall.Listener Modifier and Type Method Description protected abstract ClientCall.Listener<RespT>
ForwardingClientCallListener. delegate()
Returns the delegatedClientCall.Listener
.protected ClientCall.Listener<RespT>
ForwardingClientCallListener.SimpleForwardingClientCallListener. delegate()
Methods in io.grpc with parameters of type ClientCall.Listener Modifier and Type Method Description protected abstract void
ClientInterceptors.CheckedForwardingClientCall. checkedStart(ClientCall.Listener<RespT> responseListener, Metadata headers)
Subclasses implement the start logic here that would normally belong tostart()
.abstract void
ClientCall. start(ClientCall.Listener<RespT> responseListener, Metadata headers)
Start a call, usingresponseListener
for processing response messages.void
ClientInterceptors.CheckedForwardingClientCall. start(ClientCall.Listener<RespT> responseListener, Metadata headers)
void
ForwardingClientCall. start(ClientCall.Listener<RespT> responseListener, Metadata headers)
Constructors in io.grpc with parameters of type ClientCall.Listener Constructor Description SimpleForwardingClientCallListener(ClientCall.Listener<RespT> delegate)
-