Uses of Class
io.vertx.rxjava.grpc.client.GrpcClientRequest
-
Packages that use GrpcClientRequest Package Description io.vertx.rxjava.grpc.client io.vertx.rxjava.grpcio.client -
-
Uses of GrpcClientRequest in io.vertx.rxjava.grpc.client
Fields in io.vertx.rxjava.grpc.client with type parameters of type GrpcClientRequest Modifier and Type Field Description static TypeArg<GrpcClientRequest>
GrpcClientRequest. __TYPE_ARG
Methods in io.vertx.rxjava.grpc.client that return GrpcClientRequest Modifier and Type Method Description GrpcClientRequest<Req,Resp>
GrpcClientRequest. drainHandler(Handler<Void> handler)
GrpcClientRequest<Req,Resp>
GrpcClientRequest. encoding(String encoding)
GrpcClientRequest<Req,Resp>
GrpcClientRequest. exceptionHandler(Handler<Throwable> handler)
GrpcClientRequest<Req,Resp>
GrpcClientRequest. fullMethodName(String fullMethodName)
Set the full method name to call, it must follow the formatpackage-name + '.' + service-name + '/' + method-name
or anIllegalArgumentException
is thrown.GrpcClientRequest<Req,Resp>
GrpcClientRequest. idleTimeout(long timeout)
Sets the amount of time after which, if the request does not return any data within the timeout period, the request/response is cancelled and the related futures.GrpcClientRequest<Req,Resp>
GrpcClientRequest. methodName(String methodName)
Set the method name to call.static <Req,Resp>
GrpcClientRequest<Req,Resp>GrpcClientRequest. newInstance(GrpcClientRequest arg)
static <Req,Resp>
GrpcClientRequest<Req,Resp>GrpcClientRequest. newInstance(GrpcClientRequest arg, TypeArg<Req> __typeArg_Req, TypeArg<Resp> __typeArg_Resp)
GrpcClientRequest<Req,Resp>
GrpcClientRequest. serviceName(ServiceName serviceName)
Set the service name to call.GrpcClientRequest<Req,Resp>
GrpcClientRequest. setWriteQueueMaxSize(int maxSize)
Methods in io.vertx.rxjava.grpc.client that return types with arguments of type GrpcClientRequest Modifier and Type Method Description Future<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. request(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Future<GrpcClientRequest<Req,Resp>>GrpcClient. request(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service)
Deprecated.<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.rx.Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. rxRequest(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
rx.Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service)
Deprecated.<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.Method parameters in io.vertx.rxjava.grpc.client with type arguments of type GrpcClientRequest Modifier and Type Method Description <Req,Resp,T>
Future<T>GrpcClient. call(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,Future<T>> resultFn)
Deprecated.<Req,Resp,T>
rx.Single<T>GrpcClient. rxCall(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,Future<T>> resultFn)
Deprecated. -
Uses of GrpcClientRequest in io.vertx.rxjava.grpcio.client
Method parameters in io.vertx.rxjava.grpcio.client with type arguments of type GrpcClientRequest Modifier and Type Method Description <Req,Resp,T>
Future<T>GrpcIoClient. call(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,Future<T>> resultFn)
Call theservice
gRPC service hosted byserver
.<Req,Resp,T>
rx.Single<T>GrpcIoClient. rxCall(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,Future<T>> resultFn)
Call theservice
gRPC service hosted byserver
.
-