Uses of Class
io.vertx.rxjava.grpc.common.ServiceMethod
-
Packages that use ServiceMethod Package Description io.vertx.rxjava.grpc.client io.vertx.rxjava.grpc.common io.vertx.rxjava.grpc.server -
-
Uses of ServiceMethod in io.vertx.rxjava.grpc.client
Methods in io.vertx.rxjava.grpc.client with parameters of type ServiceMethod Modifier and Type Method Description <Req,Resp>
Future<GrpcClientRequest<Req,Resp>>GrpcClient. request(SocketAddress server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
rx.Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(SocketAddress server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service. -
Uses of ServiceMethod in io.vertx.rxjava.grpc.common
Fields in io.vertx.rxjava.grpc.common with type parameters of type ServiceMethod Modifier and Type Field Description static TypeArg<ServiceMethod>
ServiceMethod. __TYPE_ARG
Methods in io.vertx.rxjava.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, TypeArg<I> __typeArg_I, 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.rxjava.grpc.server
Methods in io.vertx.rxjava.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.
-