Uses of Class
io.grpc.ClientCall.Listener
-
Packages that use ClientCall.Listener Package Description io.grpc The gRPC core public API.io.grpc.internal Interfaces and implementations that are internal to gRPC.io.grpc.protobuf.services Service definitions and utilities with protobuf dependency for the pre-defined gRPC services.io.grpc.stub API for the Stub layer. -
-
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.(package private) class
PartialForwardingClientCallListener<RespT>
AClientCall.Listener
which forwards all of its methods to anotherClientCall.Listener
which may have a different parameterized type than the onMessage() message type.Fields in io.grpc declared as ClientCall.Listener Modifier and Type Field Description private ClientCall.Listener<RespT>
ForwardingClientCallListener.SimpleForwardingClientCallListener. 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()
protected abstract ClientCall.Listener<?>
PartialForwardingClientCallListener. delegate()
Returns the delegatedClientCall.Listener
.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)
-
Uses of ClientCall.Listener in io.grpc.internal
Subclasses of ClientCall.Listener in io.grpc.internal Modifier and Type Class Description private static class
DelayedClientCall.DelayedListener<RespT>
Fields in io.grpc.internal declared as ClientCall.Listener Modifier and Type Field Description (package private) ClientCall.Listener<RespT>
DelayedClientCall.CloseListenerRunnable. listener
private ClientCall.Listener<RespT>
DelayedClientCall. listener
Non-null
iff start has been called.private ClientCall.Listener<RespT>
ClientCallImpl.ClientStreamListenerImpl. observer
private ClientCall.Listener<RespT>
DelayedClientCall.DelayedListener. realListener
Methods in io.grpc.internal with parameters of type ClientCall.Listener Modifier and Type Method Description private void
ClientCallImpl. closeObserver(ClientCall.Listener<RespT> observer, Status status, Metadata trailers)
private void
ManagedChannelImpl.ConfigSelectingClientCall. executeCloseObserverInContext(ClientCall.Listener<RespT> observer, Status status)
void
ClientCallImpl. start(ClientCall.Listener<RespT> observer, Metadata headers)
void
DelayedClientCall. start(ClientCall.Listener<RespT> listener, Metadata headers)
void
ManagedChannelImpl.ConfigSelectingClientCall. start(ClientCall.Listener<RespT> observer, Metadata headers)
private void
ClientCallImpl. startInternal(ClientCall.Listener<RespT> observer, Metadata headers)
Constructors in io.grpc.internal with parameters of type ClientCall.Listener Constructor Description ClientStreamListenerImpl(ClientCall.Listener<RespT> observer)
CloseListenerRunnable(ClientCall.Listener<RespT> listener, Status status)
DelayedListener(ClientCall.Listener<RespT> listener)
-
Uses of ClientCall.Listener in io.grpc.protobuf.services
Subclasses of ClientCall.Listener in io.grpc.protobuf.services Modifier and Type Class Description private class
HealthCheckingLoadBalancerFactory.HealthCheckState.HcStream
-
Uses of ClientCall.Listener in io.grpc.stub
Subclasses of ClientCall.Listener in io.grpc.stub Modifier and Type Class Description private class
ClientCalls.BlockingResponseStream.QueuingListener
private static class
ClientCalls.StartableListener<T>
private static class
ClientCalls.StreamObserverToCallListenerAdapter<ReqT,RespT>
private static class
ClientCalls.UnaryStreamToFuture<RespT>
Completes aClientCalls.GrpcFuture
usingStreamObserver
events.private class
MetadataUtils.MetadataCapturingClientInterceptor.MetadataCapturingClientCall.MetadataCapturingClientCallListener
Methods in io.grpc.stub with parameters of type ClientCall.Listener Modifier and Type Method Description void
MetadataUtils.HeaderAttachingClientInterceptor.HeaderAttachingClientCall. start(ClientCall.Listener<RespT> responseListener, Metadata headers)
void
MetadataUtils.MetadataCapturingClientInterceptor.MetadataCapturingClientCall. start(ClientCall.Listener<RespT> responseListener, Metadata headers)
Constructors in io.grpc.stub with parameters of type ClientCall.Listener Constructor Description MetadataCapturingClientCallListener(ClientCall.Listener<RespT> responseListener)
-