| Package | Description |
|---|---|
| io.vertx.grpc.server | |
| io.vertx.grpcio.server |
| Modifier and Type | Method and Description |
|---|---|
GrpcServer |
GrpcServer.callHandler(io.vertx.core.Handler<GrpcServerRequest<io.vertx.core.buffer.Buffer,io.vertx.core.buffer.Buffer>> handler)
Set a call handler that handles any call made to the server.
|
<Req,Resp> GrpcServer |
GrpcServer.callHandler(io.grpc.MethodDescriptor<Req,Resp> methodDesc,
io.vertx.core.Handler<GrpcServerRequest<Req,Resp>> handler)
Deprecated.
|
<Req,Resp> GrpcServer |
GrpcServer.callHandler(ServiceMethod<Req,Resp> serviceMethod,
io.vertx.core.Handler<GrpcServerRequest<Req,Resp>> handler)
Set a service method call handler that handles any call made to the server for the
fullMethodName service method. |
static GrpcServer |
GrpcServer.server(io.vertx.core.Vertx vertx)
Create a blank gRPC server
|
static GrpcServer |
GrpcServer.server(io.vertx.core.Vertx vertx,
GrpcServerOptions options)
Create a blank gRPC server
|
| Modifier and Type | Method and Description |
|---|---|
void |
GrpcServiceBridge.bind(GrpcServer server)
Bind all service methods to the @{code server}.
|
void |
GrpcServiceBridge.unbind(GrpcServer server)
Unbind all service methods from the @{code server}.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
GrpcIoServer
Extends the
GrpcServer so it can be utilized with MethodDescriptor. |
Copyright © 2024 Eclipse. All rights reserved.