Uses of Interface
io.vertx.core.net.Address
-
-
Uses of Address in io.vertx.core.http
Methods in io.vertx.core.http that return Address Modifier and Type Method Description Address
HttpConnectOptions. getServer()
Get the server address to be used by the client request.Methods in io.vertx.core.http with parameters of type Address Modifier and Type Method Description HttpConnectOptions
HttpConnectOptions. setServer(Address server)
Set the server address to be used by the client request.RequestOptions
RequestOptions. setServer(Address server)
WebSocketConnectOptions
WebSocketConnectOptions. setServer(Address server)
-
Uses of Address in io.vertx.core.net
Subinterfaces of Address in io.vertx.core.net Modifier and Type Interface Description interface
SocketAddress
The address of a socket, an inet socket address or a domain socket address.Method parameters in io.vertx.core.net with type arguments of type Address Modifier and Type Method Description static AddressResolver
AddressResolver. mappingResolver(java.util.function.Function<Address,List<SocketAddress>> mapping)
A simple synchronous resolver for demo and testing purposes. -
Uses of Address in io.vertx.core.net.endpoint
Methods in io.vertx.core.net.endpoint with parameters of type Address Modifier and Type Method Description Future<Endpoint>
EndpointResolver. resolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress
-
Uses of Address in io.vertx.core.spi.endpoint
Classes in io.vertx.core.spi.endpoint with type parameters of type Address Modifier and Type Interface Description interface
EndpointResolver<A extends Address,S,D,E>
Endpoint resolver Service Provider Interface (SPI).Methods in io.vertx.core.spi.endpoint with parameters of type Address Modifier and Type Method Description A
EndpointResolver. tryCast(Address address)
Try to cast theaddress
to an address instance that can be resolved by this resolver instance. -
Uses of Address in io.vertx.grpc.client
Methods in io.vertx.grpc.client with parameters of type Address Modifier and Type Method Description Future<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. request(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<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. -
Uses of Address in io.vertx.grpcio.client
Methods in io.vertx.grpcio.client with parameters of type Address Modifier and Type Method Description default <Req,Resp,T>
Future<T>GrpcIoClient. call(Address server, MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, java.util.function.Function<GrpcClientResponse<Req,Resp>,Future<T>> resultFn)
Call theservice
gRPC service hosted byserver
.<Req,Resp>
Future<GrpcClientRequest<Req,Resp>>GrpcIoClient. request(Address server, MethodDescriptor<Req,Resp> service)
Connect to the remoteserver
and create a request for givenmethod
of a hosted gRPC service. -
Uses of Address in io.vertx.reactivex.core.net.endpoint
Methods in io.vertx.reactivex.core.net.endpoint with parameters of type Address Modifier and Type Method Description Future<Endpoint>
EndpointResolver. resolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress
Single<Endpoint>
EndpointResolver. rxResolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress
-
Uses of Address in io.vertx.reactivex.grpc.client
Methods in io.vertx.reactivex.grpc.client with parameters of type Address Modifier and Type Method Description Future<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. request(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<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.Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. rxRequest(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service. -
Uses of Address in io.vertx.rxjava3.core.net.endpoint
Methods in io.vertx.rxjava3.core.net.endpoint with parameters of type Address Modifier and Type Method Description Single<Endpoint>
EndpointResolver. resolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress
Single<Endpoint>
EndpointResolver. rxResolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress
-
Uses of Address in io.vertx.rxjava3.grpc.client
Methods in io.vertx.rxjava3.grpc.client with parameters of type Address Modifier and Type Method Description Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. request(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. request(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service.Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. rxRequest(Address server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(Address server, ServiceMethod<Resp,Req> method)
Connect to the remoteserver
and create a request for any hosted gRPC service. -
Uses of Address in io.vertx.serviceresolver
Subinterfaces of Address in io.vertx.serviceresolver Modifier and Type Interface Description interface
ServiceAddress
A general purpose service address, defined by aServiceAddress.name()
.
-