Uses of Class
io.grpc.ServerCall
-
Packages that use ServerCall Package Description io.grpc The gRPC core public API.me.dinowernli.grpc.prometheus -
-
Uses of ServerCall in io.grpc
Subclasses of ServerCall in io.grpc Modifier and Type Class Description classForwardingServerCall<ReqT,RespT>AServerCallwhich forwards all of it's methods to anotherServerCall.static classForwardingServerCall.SimpleForwardingServerCall<ReqT,RespT>A simplified version ofForwardingServerCallwhere subclasses can pass in aServerCallas the delegate.Methods 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()Methods in io.grpc with parameters of type ServerCall Modifier and Type Method Description 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)Produce a non-nulllistener for the incoming call.Constructors in io.grpc with parameters of type ServerCall Constructor Description SimpleForwardingServerCall(ServerCall<ReqT,RespT> delegate) -
Uses of ServerCall in me.dinowernli.grpc.prometheus
Methods in me.dinowernli.grpc.prometheus with parameters of type ServerCall Modifier and Type Method Description <R,S>
ServerCall.Listener<R>MonitoringServerInterceptor. interceptCall(ServerCall<R,S> call, Metadata requestMetadata, ServerCallHandler<R,S> next)
-