Uses of Interface
io.grpc.ServerInterceptor
-
Packages that use ServerInterceptor Package Description io.grpc The gRPC core public API.me.dinowernli.grpc.prometheus -
-
Uses of ServerInterceptor in io.grpc
Methods in io.grpc with parameters of type ServerInterceptor Modifier and Type Method Description TServerBuilder. intercept(ServerInterceptor interceptor)Adds aServerInterceptorthat is run for all services on the server.static ServerServiceDefinitionServerInterceptors. intercept(BindableService bindableService, ServerInterceptor... interceptors)static ServerServiceDefinitionServerInterceptors. intercept(ServerServiceDefinition serviceDef, ServerInterceptor... interceptors)Create a newServerServiceDefinitionwhoseServerCallHandlers will callinterceptorsbefore calling the pre-existingServerCallHandler.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)static ServerServiceDefinitionServerInterceptors. interceptForward(BindableService bindableService, ServerInterceptor... interceptors)static ServerServiceDefinitionServerInterceptors. interceptForward(ServerServiceDefinition serviceDef, ServerInterceptor... interceptors)Create a newServerServiceDefinitionwhoseServerCallHandlers will callinterceptorsbefore calling the pre-existingServerCallHandler.Method parameters in io.grpc with type arguments of type ServerInterceptor Modifier and Type Method Description static ServerServiceDefinitionServerInterceptors. intercept(BindableService bindableService, java.util.List<? extends ServerInterceptor> interceptors)static ServerServiceDefinitionServerInterceptors. intercept(ServerServiceDefinition serviceDef, java.util.List<? extends ServerInterceptor> interceptors)Create a newServerServiceDefinitionwhoseServerCallHandlers will callinterceptorsbefore calling the pre-existingServerCallHandler.static ServerServiceDefinitionServerInterceptors. interceptForward(BindableService bindableService, java.util.List<? extends ServerInterceptor> interceptors)static ServerServiceDefinitionServerInterceptors. interceptForward(ServerServiceDefinition serviceDef, java.util.List<? extends ServerInterceptor> interceptors)Create a newServerServiceDefinitionwhoseServerCallHandlers will callinterceptorsbefore calling the pre-existingServerCallHandler. -
Uses of ServerInterceptor in me.dinowernli.grpc.prometheus
Classes in me.dinowernli.grpc.prometheus that implement ServerInterceptor Modifier and Type Class Description classMonitoringServerInterceptorAServerInterceptorwhich sends stats about incoming grpc calls to Prometheus.
-