public interface GrpcServer extends Handler<HttpServerRequest>
The server can be used as a HttpServer
handler or mounted as a Vert.x Web handler.
Unlike traditional gRPC servers, this server does not rely on a generated RPC interface to interact with the service. Instead, you can interact with the service with a request/response interfaces and gRPC messages, very much like a traditional client. The server exposes 2 levels of handlers
handler
: GrpcServerRequest
/GrpcServerResponse
with Protobuf message that handles any method call in a generic wayhandler
: GrpcServerRequest
/GrpcServerRequest
with gRPC messages that handles specific service method callsModifier and Type | Method and Description |
---|---|
GrpcServer |
callHandler(Handler<GrpcServerRequest<Buffer,Buffer>> handler)
Set a call handler that handles any call made to the server.
|
<Req,Resp> GrpcServer |
callHandler(io.grpc.MethodDescriptor<Req,Resp> methodDesc,
Handler<GrpcServerRequest<Req,Resp>> handler)
Set a service method call handler that handles any call call made to the server for the
MethodDescriptor service method. |
static GrpcServer |
server(Vertx vertx)
Create a blank gRPC server
|
static GrpcServer server(Vertx vertx)
GrpcServer callHandler(Handler<GrpcServerRequest<Buffer,Buffer>> handler)
handler
- the service method call handler<Req,Resp> GrpcServer callHandler(io.grpc.MethodDescriptor<Req,Resp> methodDesc, Handler<GrpcServerRequest<Req,Resp>> handler)
MethodDescriptor
service method.handler
- the service method call handlerCopyright © 2023 Eclipse. All rights reserved.