Class GrpcClient
java.lang.Object
io.vertx.rxjava3.grpc.client.GrpcClient
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate
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 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic GrpcClientBuilder<GrpcClient> Provide a builder forGrpcClient, it can be used to configure advanced client settings like a load balancer or an address resolver.static GrpcClientCreate a client.static GrpcClientclient(Vertx vertx, HttpClientOptions options) Create a client with the specifiedoptions.static GrpcClientclient(Vertx vertx, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.static GrpcClientclient(Vertx vertx, GrpcClientOptions options) Create a client.static GrpcClientclient(Vertx vertx, GrpcClientOptions grpcOptions, HttpClientOptions httpOptions) Create a client with the specifiedoptions.static GrpcClientclient(Vertx vertx, GrpcClientOptions grpcOptions, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.static GrpcClientclient(Vertx vertx, HttpClient client) Create a client wrapping an existing .close()Close this client.booleaninthashCode()static GrpcClientnewInstance(GrpcClient arg) request()Likerequest(Address)with the default remote server.Connect to the remoteserverand create a request for any hosted gRPC service.<Req,Resp> Single <GrpcClientRequest<Req, Resp>> request(Address server, ServiceMethod<Resp, Req> method) Connect to the remoteserverand create a request for any hosted gRPC service.<Req,Resp> Single <GrpcClientRequest<Req, Resp>> request(ServiceMethod<Resp, Req> method) Likerequest(Address)with the default remote server.rxClose()Close this client.Likerequest(Address)with the default remote server.Connect to the remoteserverand create a request for any hosted gRPC service.<Req,Resp> Single <GrpcClientRequest<Req, Resp>> rxRequest(Address server, ServiceMethod<Resp, Req> method) Connect to the remoteserverand create a request for any hosted gRPC service.<Req,Resp> Single <GrpcClientRequest<Req, Resp>> rxRequest(ServiceMethod<Resp, Req> method) Likerequest(Address)with the default remote server.toString()
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
GrpcClient
-
GrpcClient
-
-
Method Details
-
toString
-
equals
-
hashCode
-
getDelegate
- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate
-
builder
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
Create a client.- Parameters:
vertx- the vertx instance- Returns:
- the created client
-
client
Create a client.- Parameters:
vertx- the vertx instanceoptions-- Returns:
- the created client
-
client
public static GrpcClient client(Vertx vertx, GrpcClientOptions grpcOptions, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.- Parameters:
vertx- the vertx instancegrpcOptions- the http client optionssslOptions- the http client options- Returns:
- the created client
-
client
Create a client with the specifiedsslOptions.- Parameters:
vertx- the vertx instancesslOptions- the http client options- 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
Create a client with the specifiedoptions.- Parameters:
vertx- the vertx instanceoptions- the http client options- Returns:
- the created client
-
client
Create a client wrapping an existing .- Parameters:
vertx- the vertx instanceclient- the http client instance- Returns:
- the created client
-
request
Connect to the remoteserverand create a request for any hosted gRPC service.- Parameters:
server- the server hosting the service- Returns:
- a future request
-
rxRequest
Connect to the remoteserverand create a request for any hosted gRPC service.- Parameters:
server- the server hosting the service- Returns:
- a future request
-
request
Likerequest(Address)with the default remote server.- Returns:
-
rxRequest
Likerequest(Address)with the default remote server.- Returns:
-
close
-
rxClose
-
request
public <Req,Resp> Single<GrpcClientRequest<Req,Resp>> request(Address server, ServiceMethod<Resp, Req> method) Connect to the remoteserverand 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 remoteserverand create a request for any hosted gRPC service.- Parameters:
server- the server hosting the servicemethod- the grpc method- Returns:
- a future request
-
request
Likerequest(Address)with the default remote server.- Parameters:
method-- Returns:
-
rxRequest
Likerequest(Address)with the default remote server.- Parameters:
method-- Returns:
-
newInstance
-