Uses of Class
io.grpc.ServerCall
Packages that use ServerCall
Package
Description
The gRPC core public API.
Interfaces and implementations that are internal to gRPC.
API for the Stub layer.
Utilities with advanced features in the core layer that user can optionally use.
-
Uses of ServerCall in io.grpc
Subclasses of ServerCall in io.grpcModifier and TypeClassDescriptionclass
ForwardingServerCall<ReqT,
RespT> AServerCall
which forwards all of its methods to anotherServerCall
.static class
ForwardingServerCall.SimpleForwardingServerCall<ReqT,
RespT> A simplified version ofForwardingServerCall
where subclasses can pass in aServerCall
as the delegate.(package private) class
PartialForwardingServerCall<ReqT,
RespT> AServerCall
which forwards all of it's methods to anotherServerCall
which may have a different sendMessage() message type.private static final class
ServerStreamTracer.ReadOnlyServerCall<ReqT,
RespT> Deprecated.Fields in io.grpc declared as ServerCallModifier and TypeFieldDescriptionprivate final ServerCall
<ReqT, RespT> ForwardingServerCall.SimpleForwardingServerCall.delegate
Methods in io.grpc that return ServerCallModifier and TypeMethodDescriptionprotected 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 ServerCallModifier and TypeMethodDescription<ReqT,
RespT>
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 providedContext
Context.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) void
ServerStreamTracer.serverCallStarted
(ServerCall<?, ?> call) Deprecated.ImplementServerStreamTracer.serverCallStarted(ServerCallInfo)
instead.ServerCallHandler.startCall
(ServerCall<RequestT, ResponseT> call, Metadata headers) Starts asynchronous processing of an incoming call.ServerInterceptors.InterceptCallHandler.startCall
(ServerCall<ReqT, RespT> call, Metadata headers) Constructors in io.grpc with parameters of type ServerCallModifierConstructorDescriptionprotected
SimpleForwardingServerCall
(ServerCall<ReqT, RespT> delegate) -
Uses of ServerCall in io.grpc.internal
Subclasses of ServerCall in io.grpc.internal -
Uses of ServerCall in io.grpc.stub
Subclasses of ServerCall in io.grpc.stubModifier and TypeClassDescription(package private) final class
Fields in io.grpc.stub declared as ServerCallModifier and TypeFieldDescription(package private) final ServerCall
<ReqT, RespT> ServerCalls.ServerCallStreamObserverImpl.call
private final ServerCall
<ReqT, RespT> ServerCalls.StreamingServerCallHandler.StreamingServerCallListener.call
private final ServerCall
<ReqT, RespT> ServerCalls.UnaryServerCallHandler.UnaryServerCallListener.call
Methods in io.grpc.stub with parameters of type ServerCallModifier and TypeMethodDescription<ReqT,
RespT>
ServerCall.Listener<ReqT> MetadataUtils.MetadataAttachingServerInterceptor.interceptCall
(ServerCall<ReqT, RespT> call, Metadata headers, ServerCallHandler<ReqT, RespT> next) ServerCalls.StreamingServerCallHandler.startCall
(ServerCall<ReqT, RespT> call, Metadata headers) ServerCalls.UnaryServerCallHandler.startCall
(ServerCall<ReqT, RespT> call, Metadata headers) Constructors in io.grpc.stub with parameters of type ServerCallModifierConstructorDescription(package private)
MetadataAttachingServerCall
(ServerCall<ReqT, RespT> delegate) (package private)
ServerCallStreamObserverImpl
(ServerCall<ReqT, RespT> call, boolean serverStreamingOrBidi) (package private)
StreamingServerCallListener
(StreamObserver<ReqT> requestObserver, ServerCalls.ServerCallStreamObserverImpl<ReqT, RespT> responseObserver, ServerCall<ReqT, RespT> call) (package private)
UnaryServerCallListener
(ServerCalls.ServerCallStreamObserverImpl<ReqT, RespT> responseObserver, ServerCall<ReqT, RespT> call) -
Uses of ServerCall in io.grpc.util
Subclasses of ServerCall in io.grpc.utilModifier and TypeClassDescriptionprivate static class
AServerCall
that 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 ServerCallModifier and TypeMethodDescription<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 ServerCallModifierConstructorDescription(package private)
SerializingServerCall
(ServerCall<ReqT, RespT> delegate)
ServerStreamTracer.serverCallStarted(ServerCall)
is removed.