Uses of Interface
io.vertx.grpc.common.ServiceMethod
-
-
Uses of ServiceMethod in io.vertx.grpc.client
Methods in io.vertx.grpc.client with parameters of type ServiceMethod Modifier and Type Method Description <Req,Resp>
Future<GrpcClientRequest<Req,Resp>>GrpcClient. request(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Future<GrpcClientRequest<Req,Resp>>GrpcClient. request(ServiceMethod<Resp,Req> method)
LikeGrpcClient.request(Address, ServiceMethod)
with the default remote server. -
Uses of ServiceMethod in io.vertx.grpc.common
Methods in io.vertx.grpc.common that return ServiceMethod Modifier and Type Method Description static <Req,Resp>
ServiceMethod<Resp,Req>ServiceMethod. client(ServiceName serviceName, String methodName, GrpcMessageEncoder<Req> encoder, GrpcMessageDecoder<Resp> decoder)
static <Req,Resp>
ServiceMethod<Req,Resp>ServiceMethod. server(ServiceName serviceName, String methodName, GrpcMessageEncoder<Resp> encoder, GrpcMessageDecoder<Req> decoder)
-
Uses of ServiceMethod in io.vertx.grpc.server
Methods in io.vertx.grpc.server with parameters of type ServiceMethod Modifier and Type Method Description <Req,Resp>
ServiceBuilderServiceBuilder. bind(ServiceMethod<Req,Resp> serviceMethod, Handler<GrpcServerRequest<Req,Resp>> handler)
Bind a service method call handler that handles any call made to the server for thefullMethodName
method.<Req,Resp>
GrpcServerGrpcServer. callHandler(ServiceMethod<Req,Resp> serviceMethod, Handler<GrpcServerRequest<Req,Resp>> handler)
Set a service method call handler that handles any call made to the server for thefullMethodName
service method. -
Uses of ServiceMethod in io.vertx.reactivex.grpc.client
Methods in io.vertx.reactivex.grpc.client with parameters of type ServiceMethod Modifier and Type Method Description <Req,Resp>
Future<GrpcClientRequest<Req,Resp>>GrpcClient. request(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Future<GrpcClientRequest<Req,Resp>>GrpcClient. request(ServiceMethod<Resp,Req> method)
LikeGrpcClient.request(io.vertx.core.net.Address)
with the default remote server.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(ServiceMethod<Resp,Req> method)
LikeGrpcClient.request(io.vertx.core.net.Address)
with the default remote server. -
Uses of ServiceMethod in io.vertx.reactivex.grpc.server
Methods in io.vertx.reactivex.grpc.server with parameters of type ServiceMethod Modifier and Type Method Description <Req,Resp>
GrpcServerGrpcServer. callHandler(ServiceMethod<Req,Resp> serviceMethod, Handler<GrpcServerRequest<Req,Resp>> handler)
Set a service method call handler that handles any call made to the server for thefullMethodName
service method. -
Uses of ServiceMethod in io.vertx.rxjava3.grpc.client
Methods in io.vertx.rxjava3.grpc.client with parameters of type ServiceMethod Modifier and Type Method Description <Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. request(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. request(ServiceMethod<Resp,Req> method)
LikeGrpcClient.request(io.vertx.core.net.Address)
with the default remote server.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(ServiceMethod<Resp,Req> method)
LikeGrpcClient.request(io.vertx.core.net.Address)
with the default remote server. -
Uses of ServiceMethod in io.vertx.rxjava3.grpc.server
Methods in io.vertx.rxjava3.grpc.server with parameters of type ServiceMethod Modifier and Type Method Description <Req,Resp>
GrpcServerGrpcServer. callHandler(ServiceMethod<Req,Resp> serviceMethod, Handler<GrpcServerRequest<Req,Resp>> handler)
Set a service method call handler that handles any call made to the server for thefullMethodName
service method.
-