Uses of Interface
io.grpc.internal.ClientStreamListener
-
Packages that use ClientStreamListener Package Description io.grpc.inprocess The in-process transport which is for when a server is in the same process as the client.io.grpc.internal Interfaces and implementations that are internal to gRPC. -
-
Uses of ClientStreamListener in io.grpc.inprocess
Fields in io.grpc.inprocess declared as ClientStreamListener Modifier and Type Field Description private ClientStreamListener
InProcessTransport.InProcessStream.InProcessServerStream. clientStreamListener
Methods in io.grpc.inprocess with parameters of type ClientStreamListener Modifier and Type Method Description private void
InProcessTransport.InProcessStream.InProcessServerStream. setListener(ClientStreamListener listener)
void
InProcessTransport.InProcessStream.InProcessClientStream. start(ClientStreamListener listener)
-
Uses of ClientStreamListener in io.grpc.internal
Classes in io.grpc.internal that implement ClientStreamListener Modifier and Type Class Description private class
ClientCallImpl.ClientStreamListenerImpl
private static class
DelayedStream.DelayedStreamListener
(package private) class
ForwardingClientStreamListener
private class
RetriableStream.Sublistener
Fields in io.grpc.internal declared as ClientStreamListener Modifier and Type Field Description private ClientStreamListener
AbstractClientStream.TransportState. listener
private ClientStreamListener
DelayedStream. listener
Non-null
iff start has been called.private ClientStreamListener
RetriableStream. masterListener
private ClientStreamListener
DelayedStream.DelayedStreamListener. realListener
Methods in io.grpc.internal that return ClientStreamListener Modifier and Type Method Description protected abstract ClientStreamListener
ForwardingClientStreamListener. delegate()
protected ClientStreamListener
AbstractClientStream.TransportState. listener()
Methods in io.grpc.internal with parameters of type ClientStreamListener Modifier and Type Method Description private void
DelayedStream. internalStart(ClientStreamListener listener)
Starts stream without synchronization.void
AbstractClientStream.TransportState. setListener(ClientStreamListener listener)
void
AbstractClientStream. start(ClientStreamListener listener)
void
ClientStream. start(ClientStreamListener listener)
Starts stream.void
DelayedStream. start(ClientStreamListener listener)
void
FailingClientStream. start(ClientStreamListener listener)
void
ForwardingClientStream. start(ClientStreamListener listener)
void
NoopClientStream. start(ClientStreamListener listener)
void
RetriableStream. start(ClientStreamListener listener)
Starts the first PRC attempt.Constructors in io.grpc.internal with parameters of type ClientStreamListener Constructor Description DelayedStreamListener(ClientStreamListener listener)
-