Uses of Interface
io.vertx.grpc.common.ServiceMethod
-
Packages that use ServiceMethod Package Description io.vertx.grpc.client io.vertx.grpc.common io.vertx.grpc.server io.vertx.reactivex.grpc.common io.vertx.rxjava3.grpc.common -
-
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>
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.common
Methods in io.vertx.reactivex.grpc.common that return ServiceMethod Modifier and Type Method Description ServiceMethod
ServiceMethod. getDelegate()
Methods in io.vertx.reactivex.grpc.common with parameters of type ServiceMethod Modifier and Type Method Description 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)
Constructors in io.vertx.reactivex.grpc.common with parameters of type ServiceMethod Constructor Description ServiceMethod(ServiceMethod delegate)
-
Uses of ServiceMethod in io.vertx.rxjava3.grpc.common
Methods in io.vertx.rxjava3.grpc.common that return ServiceMethod Modifier and Type Method Description ServiceMethod
ServiceMethod. getDelegate()
Methods in io.vertx.rxjava3.grpc.common with parameters of type ServiceMethod Modifier and Type Method Description 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)
Constructors in io.vertx.rxjava3.grpc.common with parameters of type ServiceMethod Constructor Description ServiceMethod(ServiceMethod delegate)
-