Uses of Class
io.vertx.mutiny.core.net.SocketAddress
-
-
Uses of SocketAddress in io.vertx.mutiny.core.datagram
Methods in io.vertx.mutiny.core.datagram that return SocketAddress Modifier and Type Method Description SocketAddress
DatagramSocket. localAddress()
SocketAddress
DatagramPacket. sender()
-
Uses of SocketAddress in io.vertx.mutiny.core.http
Methods in io.vertx.mutiny.core.http that return SocketAddress Modifier and Type Method Description SocketAddress
HttpConnection. localAddress()
SocketAddress
HttpServerRequest. localAddress()
SocketAddress
ServerWebSocket. localAddress()
SocketAddress
WebSocket. localAddress()
SocketAddress
WebSocketBase. localAddress()
SocketAddress
HttpConnection. remoteAddress()
SocketAddress
HttpServerRequest. remoteAddress()
SocketAddress
ServerWebSocket. remoteAddress()
SocketAddress
WebSocket. remoteAddress()
SocketAddress
WebSocketBase. remoteAddress()
Methods in io.vertx.mutiny.core.http with parameters of type SocketAddress Modifier and Type Method Description io.smallrye.mutiny.Uni<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).HttpServer
HttpServer. listenAndAwait(SocketAddress address)
Blocking variant ofHttpServer.listen(io.vertx.mutiny.core.net.SocketAddress)
.HttpServer
HttpServer. listenAndForget(SocketAddress address)
Variant ofHttpServer.listen(io.vertx.mutiny.core.net.SocketAddress)
that ignores the result of the operation. -
Uses of SocketAddress in io.vertx.mutiny.core.net
Fields in io.vertx.mutiny.core.net with type parameters of type SocketAddress Modifier and Type Field Description static TypeArg<SocketAddress>
SocketAddress. __TYPE_ARG
Methods in io.vertx.mutiny.core.net that return SocketAddress Modifier and Type Method Description static SocketAddress
SocketAddress. domainSocketAddress(String path)
static SocketAddress
SocketAddress. inetSocketAddress(int port, String host)
static SocketAddress
SocketAddress. inetSocketAddress(InetSocketAddress address)
SocketAddress
NetSocket. localAddress()
static SocketAddress
SocketAddress. newInstance(io.vertx.core.net.SocketAddress arg)
SocketAddress
NetSocket. remoteAddress()
Methods in io.vertx.mutiny.core.net with parameters of type SocketAddress Modifier and Type Method Description io.smallrye.mutiny.Uni<NetSocket>
NetClient. connect(SocketAddress remoteAddress)
Open a connection to a server at the specificremoteAddress
.io.smallrye.mutiny.Uni<NetSocket>
NetClient. connect(SocketAddress remoteAddress, String serverName)
Open a connection to a server at the specificremoteAddress
.NetSocket
NetClient. connectAndAwait(SocketAddress remoteAddress)
Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress)
.NetSocket
NetClient. connectAndAwait(SocketAddress remoteAddress, String serverName)
Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress,String)
.NetClient
NetClient. connectAndForget(SocketAddress remoteAddress)
Variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress)
that ignores the result of the operation.NetClient
NetClient. connectAndForget(SocketAddress remoteAddress, String serverName)
Variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress,String)
that ignores the result of the operation.io.smallrye.mutiny.Uni<NetServer>
NetServer. listen(SocketAddress localAddress)
LikeNetServer.listen()
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listenAndAwait(SocketAddress localAddress)
Blocking variant ofNetServer.listen(io.vertx.mutiny.core.net.SocketAddress)
.NetServer
NetServer. listenAndForget(SocketAddress localAddress)
Variant ofNetServer.listen(io.vertx.mutiny.core.net.SocketAddress)
that ignores the result of the operation. -
Uses of SocketAddress in io.vertx.mutiny.ext.web.client
Methods in io.vertx.mutiny.ext.web.client with parameters of type SocketAddress Modifier and Type Method Description HttpRequest<Buffer>
WebClient. request(io.vertx.core.http.HttpMethod method, SocketAddress serverAddress, int port, String host, String requestURI)
HttpRequest<Buffer>
WebClient. request(io.vertx.core.http.HttpMethod method, SocketAddress serverAddress, io.vertx.core.http.RequestOptions options)
HttpRequest<Buffer>
WebClient. request(io.vertx.core.http.HttpMethod method, SocketAddress serverAddress, String requestURI)
HttpRequest<Buffer>
WebClient. request(io.vertx.core.http.HttpMethod method, SocketAddress serverAddress, String host, String requestURI)
HttpRequest<Buffer>
WebClient. requestAbs(io.vertx.core.http.HttpMethod method, SocketAddress serverAddress, String absoluteURI)
-
Uses of SocketAddress in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return SocketAddress Modifier and Type Method Description SocketAddress
SockJSSocket. localAddress()
SocketAddress
SockJSSocket. remoteAddress()
-
Uses of SocketAddress in io.vertx.mutiny.mqtt
Methods in io.vertx.mutiny.mqtt that return SocketAddress Modifier and Type Method Description SocketAddress
MqttEndpoint. localAddress()
SocketAddress
MqttEndpoint. remoteAddress()
-