Uses of Interface
io.grpc.ServerCallHandler
-
Packages that use ServerCallHandler Package Description io.grpc The gRPC core public API.io.grpc.stub API for the Stub layer.me.dinowernli.grpc.prometheus -
-
Uses of ServerCallHandler in io.grpc
Methods in io.grpc that return ServerCallHandler Modifier and Type Method Description ServerCallHandler<ReqT,RespT>ServerMethodDefinition. getServerCallHandler()Handler for incoming calls.static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>InternalServerInterceptors. interceptCallHandler(ServerInterceptor interceptor, ServerCallHandler<ReqT,RespT> callHandler)static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>InternalServerInterceptors. interceptCallHandlerCreate(ServerInterceptor interceptor, ServerCallHandler<ReqT,RespT> callHandler)Methods in io.grpc with parameters of type ServerCallHandler Modifier and Type Method Description <ReqT,RespT>
ServerServiceDefinition.BuilderServerServiceDefinition.Builder. addMethod(MethodDescriptor<ReqT,RespT> method, ServerCallHandler<ReqT,RespT> handler)Add a method to be supported by the service.static <ReqT,RespT>
ServerMethodDefinition<ReqT,RespT>ServerMethodDefinition. create(MethodDescriptor<ReqT,RespT> method, ServerCallHandler<ReqT,RespT> handler)Create a new instance.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)static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>InternalServerInterceptors. interceptCallHandler(ServerInterceptor interceptor, ServerCallHandler<ReqT,RespT> callHandler)static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>InternalServerInterceptors. interceptCallHandlerCreate(ServerInterceptor interceptor, ServerCallHandler<ReqT,RespT> callHandler)ServerMethodDefinition<ReqT,RespT>ServerMethodDefinition. withServerCallHandler(ServerCallHandler<ReqT,RespT> handler)Create a new method definition with a different call handler. -
Uses of ServerCallHandler in io.grpc.stub
Methods in io.grpc.stub that return ServerCallHandler Modifier and Type Method Description static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>ServerCalls. asyncBidiStreamingCall(ServerCalls.BidiStreamingMethod<ReqT,RespT> method)Creates aServerCallHandlerfor a bidi streaming method of the service.static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>ServerCalls. asyncClientStreamingCall(ServerCalls.ClientStreamingMethod<ReqT,RespT> method)Creates aServerCallHandlerfor a client streaming method of the service.static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>ServerCalls. asyncServerStreamingCall(ServerCalls.ServerStreamingMethod<ReqT,RespT> method)Creates aServerCallHandlerfor a server streaming method of the service.static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>ServerCalls. asyncUnaryCall(ServerCalls.UnaryMethod<ReqT,RespT> method)Creates aServerCallHandlerfor a unary call method of the service. -
Uses of ServerCallHandler in me.dinowernli.grpc.prometheus
Methods in me.dinowernli.grpc.prometheus with parameters of type ServerCallHandler Modifier and Type Method Description <R,S>
ServerCall.Listener<R>MonitoringServerInterceptor. interceptCall(ServerCall<R,S> call, Metadata requestMetadata, ServerCallHandler<R,S> next)
-