Uses of Class
io.vertx.reactivex.grpc.common.ServiceMethod
-
Packages that use ServiceMethod Package Description io.vertx.reactivex.grpc.client io.vertx.reactivex.grpc.common io.vertx.reactivex.grpc.server -
-
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.common
Fields in io.vertx.reactivex.grpc.common with type parameters of type ServiceMethod Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ServiceMethod>
ServiceMethod. __TYPE_ARG
Methods in io.vertx.reactivex.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 <I,O>
ServiceMethod<I,O>ServiceMethod. newInstance(ServiceMethod arg)
static <I,O>
ServiceMethod<I,O>ServiceMethod. newInstance(ServiceMethod arg, io.vertx.lang.rx.TypeArg<I> __typeArg_I, io.vertx.lang.rx.TypeArg<O> __typeArg_O)
static <Req,Resp>
ServiceMethod<Req,Resp>ServiceMethod. server(ServiceName serviceName, String methodName, GrpcMessageEncoder<Resp> encoder, GrpcMessageDecoder<Req> decoder)
-
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.
-