Package io.vertx.rxjava3.grpc.client
Class GrpcClient
- java.lang.Object
-
- io.vertx.rxjava3.grpc.client.GrpcClient
-
public class GrpcClient extends Object
A gRPC client for Vert.x
Unlike traditional gRPC clients, this client does not rely on a generated RPC interface to interact with the service.
Instead, you can interact with the service with a request/response interfaces and gRPC messages, very much like a traditional client.
The client handles only the gRPC protocol and does not encode/decode protobuf messages.
NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<GrpcClient>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description GrpcClient(GrpcClient delegate)
GrpcClient(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GrpcClientBuilder<GrpcClient>
builder(Vertx vertx)
Provide a builder forGrpcClient
, it can be used to configure advanced client settings like a load balancer or an address resolver.static GrpcClient
client(Vertx vertx)
Create a client.static GrpcClient
client(Vertx vertx, HttpClientOptions options)
Create a client with the specifiedoptions
.static GrpcClient
client(Vertx vertx, GrpcClientOptions options)
Create a client.static GrpcClient
client(Vertx vertx, GrpcClientOptions grpcOptions, HttpClientOptions httpOptions)
Create a client with the specifiedoptions
.static GrpcClient
client(Vertx vertx, HttpClient client)
Create a client wrapping an existing .Completable
close()
Close this client.boolean
equals(Object o)
GrpcClient
getDelegate()
int
hashCode()
static GrpcClient
newInstance(GrpcClient arg)
Single<GrpcClientRequest<Buffer,Buffer>>
request()
Likerequest(io.vertx.core.net.Address)
with the default remote server.Single<GrpcClientRequest<Buffer,Buffer>>
request(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>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>>request(ServiceMethod<Resp,Req> method)
Likerequest(io.vertx.core.net.Address)
with the default remote server.Completable
rxClose()
Close this client.Single<GrpcClientRequest<Buffer,Buffer>>
rxRequest()
Likerequest(io.vertx.core.net.Address)
with the default remote server.Single<GrpcClientRequest<Buffer,Buffer>>
rxRequest(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>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>>rxRequest(ServiceMethod<Resp,Req> method)
Likerequest(io.vertx.core.net.Address)
with the default remote server.String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<GrpcClient> __TYPE_ARG
-
-
Constructor Detail
-
GrpcClient
public GrpcClient(GrpcClient delegate)
-
GrpcClient
public GrpcClient(Object delegate)
-
-
Method Detail
-
getDelegate
public GrpcClient getDelegate()
-
builder
public static GrpcClientBuilder<GrpcClient> builder(Vertx vertx)
Provide a builder forGrpcClient
, it can be used to configure advanced client settings like a load balancer or an address resolver.Example usage:
GrpcClient client = GrpcClient.builder(vertx).with(options)...build()
- Parameters:
vertx
-- Returns:
-
client
public static GrpcClient client(Vertx vertx)
Create a client.- Parameters:
vertx
- the vertx instance- Returns:
- the created client
-
client
public static GrpcClient client(Vertx vertx, GrpcClientOptions options)
Create a client.- Parameters:
vertx
- the vertx instanceoptions
-- Returns:
- the created client
-
client
public static GrpcClient client(Vertx vertx, GrpcClientOptions grpcOptions, HttpClientOptions httpOptions)
Create a client with the specifiedoptions
.- Parameters:
vertx
- the vertx instancegrpcOptions
- the http client optionshttpOptions
- the http client options- Returns:
- the created client
-
client
public static GrpcClient client(Vertx vertx, HttpClientOptions options)
Create a client with the specifiedoptions
.- Parameters:
vertx
- the vertx instanceoptions
- the http client options- Returns:
- the created client
-
client
public static GrpcClient client(Vertx vertx, HttpClient client)
Create a client wrapping an existing .- Parameters:
vertx
- the vertx instanceclient
- the http client instance- Returns:
- the created client
-
request
public Single<GrpcClientRequest<Buffer,Buffer>> request(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.- Parameters:
server
- the server hosting the service- Returns:
- a future request
-
rxRequest
public Single<GrpcClientRequest<Buffer,Buffer>> rxRequest(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.- Parameters:
server
- the server hosting the service- Returns:
- a future request
-
request
public Single<GrpcClientRequest<Buffer,Buffer>> request()
Likerequest(io.vertx.core.net.Address)
with the default remote server.- Returns:
-
rxRequest
public Single<GrpcClientRequest<Buffer,Buffer>> rxRequest()
Likerequest(io.vertx.core.net.Address)
with the default remote server.- Returns:
-
request
public <Req,Resp> Single<GrpcClientRequest<Req,Resp>> request(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.- Parameters:
server
- the server hosting the servicemethod
- the grpc method- Returns:
- a future request
-
rxRequest
public <Req,Resp> Single<GrpcClientRequest<Req,Resp>> rxRequest(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.- Parameters:
server
- the server hosting the servicemethod
- the grpc method- Returns:
- a future request
-
request
public <Req,Resp> Single<GrpcClientRequest<Req,Resp>> request(ServiceMethod<Resp,Req> method)
Likerequest(io.vertx.core.net.Address)
with the default remote server.- Parameters:
method
-- Returns:
-
rxRequest
public <Req,Resp> Single<GrpcClientRequest<Req,Resp>> rxRequest(ServiceMethod<Resp,Req> method)
Likerequest(io.vertx.core.net.Address)
with the default remote server.- Parameters:
method
-- Returns:
-
close
public Completable close()
Close this client.- Returns:
-
rxClose
public Completable rxClose()
Close this client.- Returns:
-
newInstance
public static GrpcClient newInstance(GrpcClient arg)
-
-