Uses of Class
io.grpc.ServerCall
-
Packages that use ServerCall Package Description io.grpc The gRPC core public API.io.grpc.internal Interfaces and implementations that are internal to gRPC.io.grpc.stub API for the Stub layer.io.grpc.util Utilities with advanced features in the core layer that user can optionally use. -
-
Uses of ServerCall in io.grpc
Subclasses of ServerCall in io.grpc Modifier and Type Class Description classForwardingServerCall<ReqT,RespT>AServerCallwhich forwards all of its methods to anotherServerCall.static classForwardingServerCall.SimpleForwardingServerCall<ReqT,RespT>A simplified version ofForwardingServerCallwhere subclasses can pass in aServerCallas the delegate.(package private) classPartialForwardingServerCall<ReqT,RespT>AServerCallwhich forwards all of it's methods to anotherServerCallwhich may have a different sendMessage() message type.private static classServerStreamTracer.ReadOnlyServerCall<ReqT,RespT>Deprecated.Will be deleted whenServerStreamTracer.serverCallStarted(ServerCall)is removed.Fields in io.grpc declared as ServerCall Modifier and Type Field Description private ServerCall<ReqT,RespT>ForwardingServerCall.SimpleForwardingServerCall. delegateMethods in io.grpc that return ServerCall Modifier and Type Method Description protected abstract ServerCall<ReqT,RespT>ForwardingServerCall. delegate()Returns the delegatedServerCall.protected ServerCall<ReqT,RespT>ForwardingServerCall.SimpleForwardingServerCall. delegate()protected abstract ServerCall<?,?>PartialForwardingServerCall. delegate()Returns the delegatedServerCall.protected ServerCall<ReqT,RespT>ServerStreamTracer.ReadOnlyServerCall. delegate()Deprecated.Methods in io.grpc with parameters of type ServerCall Modifier and Type Method Description <ReqT,RespT>
java.util.concurrent.ExecutorServerCallExecutorSupplier. getExecutor(ServerCall<ReqT,RespT> call, Metadata metadata)Returns an executor to handle the server call.static <ReqT,RespT>
ServerCall.Listener<ReqT>Contexts. interceptCall(Context context, ServerCall<ReqT,RespT> call, Metadata headers, ServerCallHandler<ReqT,RespT> next)Make the providedContextContext.current()for the creation of a listener to a received call and for all events received by that listener.<ReqT,RespT>
ServerCall.Listener<ReqT>ServerInterceptor. interceptCall(ServerCall<ReqT,RespT> call, Metadata headers, ServerCallHandler<ReqT,RespT> next)voidServerStreamTracer. serverCallStarted(ServerCall<?,?> call)Deprecated.ImplementServerStreamTracer.serverCallStarted(ServerCallInfo)instead.ServerCall.Listener<RequestT>ServerCallHandler. startCall(ServerCall<RequestT,ResponseT> call, Metadata headers)Starts asynchronous processing of an incoming call.ServerCall.Listener<ReqT>ServerInterceptors.InterceptCallHandler. startCall(ServerCall<ReqT,RespT> call, Metadata headers)Constructors in io.grpc with parameters of type ServerCall Constructor Description SimpleForwardingServerCall(ServerCall<ReqT,RespT> delegate) -
Uses of ServerCall in io.grpc.internal
Subclasses of ServerCall in io.grpc.internal Modifier and Type Class Description (package private) classServerCallImpl<ReqT,RespT> -
Uses of ServerCall in io.grpc.stub
Subclasses of ServerCall in io.grpc.stub Modifier and Type Class Description (package private) classMetadataUtils.MetadataAttachingServerInterceptor.MetadataAttachingServerCall<ReqT,RespT>Fields in io.grpc.stub declared as ServerCall Modifier and Type Field Description (package private) ServerCall<ReqT,RespT>ServerCalls.ServerCallStreamObserverImpl. callprivate ServerCall<ReqT,RespT>ServerCalls.StreamingServerCallHandler.StreamingServerCallListener. callprivate ServerCall<ReqT,RespT>ServerCalls.UnaryServerCallHandler.UnaryServerCallListener. callMethods in io.grpc.stub with parameters of type ServerCall Modifier and Type Method Description <ReqT,RespT>
ServerCall.Listener<ReqT>MetadataUtils.MetadataAttachingServerInterceptor. interceptCall(ServerCall<ReqT,RespT> call, Metadata headers, ServerCallHandler<ReqT,RespT> next)ServerCall.Listener<ReqT>ServerCalls.StreamingServerCallHandler. startCall(ServerCall<ReqT,RespT> call, Metadata headers)ServerCall.Listener<ReqT>ServerCalls.UnaryServerCallHandler. startCall(ServerCall<ReqT,RespT> call, Metadata headers)Constructors in io.grpc.stub with parameters of type ServerCall Constructor Description MetadataAttachingServerCall(ServerCall<ReqT,RespT> delegate)ServerCallStreamObserverImpl(ServerCall<ReqT,RespT> call, boolean serverStreamingOrBidi)StreamingServerCallListener(StreamObserver<ReqT> requestObserver, ServerCalls.ServerCallStreamObserverImpl<ReqT,RespT> responseObserver, ServerCall<ReqT,RespT> call)UnaryServerCallListener(ServerCalls.ServerCallStreamObserverImpl<ReqT,RespT> responseObserver, ServerCall<ReqT,RespT> call) -
Uses of ServerCall in io.grpc.util
Subclasses of ServerCall in io.grpc.util Modifier and Type Class Description private static classTransmitStatusRuntimeExceptionInterceptor.SerializingServerCall<ReqT,RespT>AServerCallthat wraps around a non thread safe delegate and provides thread safe access by serializing everything on an executor.Methods in io.grpc.util with parameters of type ServerCall Modifier and Type Method Description <ReqT,RespT>
ServerCall.Listener<ReqT>TransmitStatusRuntimeExceptionInterceptor. interceptCall(ServerCall<ReqT,RespT> call, Metadata headers, ServerCallHandler<ReqT,RespT> next)Constructors in io.grpc.util with parameters of type ServerCall Constructor Description SerializingServerCall(ServerCall<ReqT,RespT> delegate)
-