Uses of Interface
io.grpc.internal.ServerStreamListener
-
Packages that use ServerStreamListener 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 ServerStreamListener in io.grpc.inprocess
Fields in io.grpc.inprocess declared as ServerStreamListener Modifier and Type Field Description private ServerStreamListener
InProcessTransport.InProcessStream.InProcessClientStream. serverStreamListener
Methods in io.grpc.inprocess with parameters of type ServerStreamListener Modifier and Type Method Description private void
InProcessTransport.InProcessStream.InProcessClientStream. setListener(ServerStreamListener listener)
void
InProcessTransport.InProcessStream.InProcessServerStream. setListener(ServerStreamListener serverStreamListener)
-
Uses of ServerStreamListener in io.grpc.internal
Classes in io.grpc.internal that implement ServerStreamListener Modifier and Type Class Description (package private) static class
ServerCallImpl.ServerStreamListenerImpl<ReqT>
All of these callbacks are assumed to called on an application thread, and the caller is responsible for handling thrown exceptions.(package private) static class
ServerImpl.JumpToApplicationThreadServerStreamListener
Dispatches callbacks onto an application-provided executor and correctly propagates exceptions.private static class
ServerImpl.NoopListener
Fields in io.grpc.internal declared as ServerStreamListener Modifier and Type Field Description private ServerStreamListener
AbstractServerStream.TransportState. listener
private ServerStreamListener
ServerImpl.JumpToApplicationThreadServerStreamListener. listener
private static ServerStreamListener
ServerImpl. NOOP_LISTENER
Methods in io.grpc.internal that return ServerStreamListener Modifier and Type Method Description private ServerStreamListener
ServerImpl.JumpToApplicationThreadServerStreamListener. getListener()
This call MUST be serialized on callExecutor to avoid races.protected ServerStreamListener
AbstractServerStream.TransportState. listener()
(package private) ServerStreamListener
ServerCallImpl. newServerStreamListener(ServerCall.Listener<ReqT> listener)
private <WReqT,WRespT>
ServerStreamListenerServerImpl.ServerTransportListenerImpl. startWrappedCall(java.lang.String fullMethodName, ServerImpl.ServerTransportListenerImpl.ServerCallParameters<WReqT,WRespT> params, Metadata headers)
Methods in io.grpc.internal with parameters of type ServerStreamListener Modifier and Type Method Description void
AbstractServerStream. setListener(ServerStreamListener serverStreamListener)
void
AbstractServerStream.TransportState. setListener(ServerStreamListener listener)
Sets the listener to receive notifications.(package private) void
ServerImpl.JumpToApplicationThreadServerStreamListener. setListener(ServerStreamListener listener)
void
ServerStream. setListener(ServerStreamListener serverStreamListener)
Sets the server stream listener.
-