Uses of Class
io.vertx.rxjava3.core.net.SocketAddress
-
-
Uses of SocketAddress in io.vertx.rxjava3.core.datagram
Methods in io.vertx.rxjava3.core.datagram that return SocketAddress Modifier and Type Method Description SocketAddress
DatagramSocket. localAddress()
Return theSocketAddress
to which thisDatagramSocket
is bound.SocketAddress
DatagramPacket. sender()
Returns theSocketAddress
of the sender that sent thisDatagramPacket
. -
Uses of SocketAddress in io.vertx.rxjava3.core.http
Methods in io.vertx.rxjava3.core.http that return SocketAddress Modifier and Type Method Description SocketAddress
ClientWebSocket. localAddress()
SocketAddress
HttpConnection. localAddress()
SocketAddress
HttpConnection. localAddress(boolean real)
SocketAddress
HttpServerRequest. localAddress()
SocketAddress
ServerWebSocket. localAddress()
SocketAddress
ServerWebSocketHandshake. localAddress()
SocketAddress
WebSocket. localAddress()
SocketAddress
WebSocketBase. localAddress()
SocketAddress
ClientWebSocket. remoteAddress()
SocketAddress
HttpConnection. remoteAddress()
SocketAddress
HttpConnection. remoteAddress(boolean real)
SocketAddress
HttpServerRequest. remoteAddress()
SocketAddress
ServerWebSocket. remoteAddress()
SocketAddress
ServerWebSocketHandshake. remoteAddress()
SocketAddress
WebSocket. remoteAddress()
SocketAddress
WebSocketBase. remoteAddress()
Methods in io.vertx.rxjava3.core.http with parameters of type SocketAddress Modifier and Type Method Description io.reactivex.rxjava3.core.Single<HttpServer>
HttpServer. listen(SocketAddress address)
Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed).io.reactivex.rxjava3.core.Single<HttpServer>
HttpServer. rxListen(SocketAddress address)
Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed). -
Uses of SocketAddress in io.vertx.rxjava3.core.net
Fields in io.vertx.rxjava3.core.net with type parameters of type SocketAddress Modifier and Type Field Description static TypeArg<SocketAddress>
SocketAddress. __TYPE_ARG
Methods in io.vertx.rxjava3.core.net that return SocketAddress Modifier and Type Method Description static SocketAddress
SocketAddress. domainSocketAddress(String path)
Create a domain socket address from apath
.static SocketAddress
SocketAddress. inetSocketAddress(int port, String host)
Create an inet socket address,host
must be nonnull
andport
must be between0
and65536
.static SocketAddress
SocketAddress. inetSocketAddress(InetSocketAddress address)
Create a inet socket address from a Java .SocketAddress
NetSocket. localAddress()
SocketAddress
NetSocket. localAddress(boolean real)
static SocketAddress
SocketAddress. newInstance(SocketAddress arg)
SocketAddress
NetSocket. remoteAddress()
SocketAddress
NetSocket. remoteAddress(boolean real)
static SocketAddress
SocketAddress. sharedRandomPort(int id, String host)
Create an inet socket address that binds to a shared random port identified byid
.Methods in io.vertx.rxjava3.core.net with parameters of type SocketAddress Modifier and Type Method Description io.reactivex.rxjava3.core.Single<NetSocket>
NetClient. connect(SocketAddress remoteAddress)
Open a connection to a server at the specificremoteAddress
.io.reactivex.rxjava3.core.Single<NetSocket>
NetClient. connect(SocketAddress remoteAddress, String serverName)
Open a connection to a server at the specificremoteAddress
.io.reactivex.rxjava3.core.Single<NetServer>
NetServer. listen(SocketAddress localAddress)
LikeNetServer.listen()
but providing a handler that will be notified when the server is listening, or fails.io.reactivex.rxjava3.core.Single<NetSocket>
NetClient. rxConnect(SocketAddress remoteAddress)
Open a connection to a server at the specificremoteAddress
.io.reactivex.rxjava3.core.Single<NetSocket>
NetClient. rxConnect(SocketAddress remoteAddress, String serverName)
Open a connection to a server at the specificremoteAddress
.io.reactivex.rxjava3.core.Single<NetServer>
NetServer. rxListen(SocketAddress localAddress)
LikeNetServer.listen()
but providing a handler that will be notified when the server is listening, or fails. -
Uses of SocketAddress in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.ext.web.client with parameters of type SocketAddress Modifier and Type Method Description HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, int port, String host, UriTemplate requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theport
andhost
parameters.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, int port, String host, String requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theport
andhost
parameters.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, RequestOptions options)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theoptions
parameter.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, UriTemplate requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port and default host.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, String requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port and default host.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, String host, UriTemplate requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port andhost
parameter.HttpRequest<Buffer>
WebClient. request(HttpMethod method, SocketAddress serverAddress, String host, String requestURI)
LikeWebClient.request(io.vertx.core.http.HttpMethod, int, java.lang.String, java.lang.String)
using theserverAddress
parameter to connect to the server instead of the default port andhost
parameter.HttpRequest<Buffer>
WebClient. requestAbs(HttpMethod method, SocketAddress serverAddress, UriTemplate absoluteURI)
LikeWebClient.requestAbs(io.vertx.core.http.HttpMethod, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theabsoluteURI
parameter.HttpRequest<Buffer>
WebClient. requestAbs(HttpMethod method, SocketAddress serverAddress, String absoluteURI)
LikeWebClient.requestAbs(io.vertx.core.http.HttpMethod, java.lang.String)
using theserverAddress
parameter to connect to the server instead of theabsoluteURI
parameter. -
Uses of SocketAddress in io.vertx.rxjava3.ext.web.handler.sockjs
Methods in io.vertx.rxjava3.ext.web.handler.sockjs that return SocketAddress Modifier and Type Method Description SocketAddress
SockJSSocket. localAddress()
Return the local address for this socketSocketAddress
SockJSSocket. remoteAddress()
Return the remote address for this socket -
Uses of SocketAddress in io.vertx.rxjava3.grpc.client
Methods in io.vertx.rxjava3.grpc.client with parameters of type SocketAddress Modifier and Type Method Description <Req,Resp,T>
io.reactivex.rxjava3.core.Single<T>GrpcClient. call(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,io.reactivex.rxjava3.core.Single<T>> resultFn)
Deprecated.io.reactivex.rxjava3.core.Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. request(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
io.reactivex.rxjava3.core.Single<GrpcClientRequest<Req,Resp>>GrpcClient. request(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service)
Deprecated.<Req,Resp>
io.reactivex.rxjava3.core.Single<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,T>
io.reactivex.rxjava3.core.Single<T>GrpcClient. rxCall(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,io.reactivex.rxjava3.core.Single<T>> resultFn)
Deprecated.io.reactivex.rxjava3.core.Single<GrpcClientRequest<Buffer,Buffer>>
GrpcClient. rxRequest(SocketAddress server)
Connect to the remoteserver
and create a request for any hosted gRPC service.<Req,Resp>
io.reactivex.rxjava3.core.Single<GrpcClientRequest<Req,Resp>>GrpcClient. rxRequest(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service)
Deprecated.<Req,Resp>
io.reactivex.rxjava3.core.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 SocketAddress in io.vertx.rxjava3.grpcio.client
Methods in io.vertx.rxjava3.grpcio.client with parameters of type SocketAddress Modifier and Type Method Description <Req,Resp,T>
io.reactivex.rxjava3.core.Single<T>GrpcIoClient. call(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,io.reactivex.rxjava3.core.Single<T>> resultFn)
Call theservice
gRPC service hosted byserver
.<Req,Resp,T>
io.reactivex.rxjava3.core.Single<T>GrpcIoClient. rxCall(SocketAddress server, io.grpc.MethodDescriptor<Req,Resp> service, Handler<GrpcClientRequest<Req,Resp>> requestHandler, Function<GrpcClientResponse<Req,Resp>,io.reactivex.rxjava3.core.Single<T>> resultFn)
Call theservice
gRPC service hosted byserver
. -
Uses of SocketAddress in io.vertx.rxjava3.httpproxy
Methods in io.vertx.rxjava3.httpproxy with parameters of type SocketAddress Modifier and Type Method Description HttpProxy
HttpProxy. origin(SocketAddress address)
Set theSocketAddress
of the origin.Method parameters in io.vertx.rxjava3.httpproxy with type arguments of type SocketAddress Modifier and Type Method Description HttpProxy
HttpProxy. originSelector(Function<HttpServerRequest,io.reactivex.rxjava3.core.Single<SocketAddress>> selector)
Set a selector that resolves the origin address based on the incoming HTTP request. -
Uses of SocketAddress in io.vertx.rxjava3.mqtt
Methods in io.vertx.rxjava3.mqtt that return SocketAddress Modifier and Type Method Description SocketAddress
MqttEndpoint. localAddress()
SocketAddress
MqttEndpoint. remoteAddress()
-