Class BlockingServerInterceptor
java.lang.Object
io.vertx.grpc.BlockingServerInterceptor
- All Implemented Interfaces:
ServerInterceptor
Deprecated.
instead use Vert.x gRPC
Wraps the ServerInterceptor and executes it on worker thread.
All incoming events will be deferred until the interception is completed.
- Author:
- Pavel Kopachevskiy, Ruslan Sennov
-
Method Summary
Modifier and TypeMethodDescription<ReqT,RespT>
ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> serverCall, Metadata metadata, ServerCallHandler<ReqT, RespT> serverCallHandler) Deprecated.static ServerInterceptorwrap(Vertx vertx, ServerInterceptor interceptor) Deprecated.
-
Method Details
-
wrap
Deprecated. -
interceptCall
public <ReqT,RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> serverCall, Metadata metadata, ServerCallHandler<ReqT, RespT> serverCallHandler) Deprecated.- Specified by:
interceptCallin interfaceServerInterceptor
-