Uses of Class
io.vertx.mutiny.core.net.SocketAddress
Packages that use SocketAddress
Package
Description
-
Uses of SocketAddress in io.vertx.mutiny.core.datagram
Methods in io.vertx.mutiny.core.datagram that return SocketAddress -
Uses of SocketAddress in io.vertx.mutiny.core.http
Methods in io.vertx.mutiny.core.http that return SocketAddressModifier and TypeMethodDescriptionClientWebSocket.localAddress()HttpConnection.localAddress()HttpConnection.localAddress(boolean real) HttpServerRequest.localAddress()ServerWebSocket.localAddress()ServerWebSocketHandshake.localAddress()WebSocket.localAddress()WebSocketBase.localAddress()ClientWebSocket.remoteAddress()HttpConnection.remoteAddress()HttpConnection.remoteAddress(boolean real) HttpServerRequest.remoteAddress()ServerWebSocket.remoteAddress()ServerWebSocketHandshake.remoteAddress()WebSocket.remoteAddress()WebSocketBase.remoteAddress()Methods in io.vertx.mutiny.core.http with parameters of type SocketAddressModifier and TypeMethodDescriptionio.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.listenAndAwait(SocketAddress address) Blocking variant ofHttpServer.listen(io.vertx.mutiny.core.net.SocketAddress).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 SocketAddressModifier and TypeFieldDescriptionstatic final io.smallrye.mutiny.vertx.TypeArg<SocketAddress> SocketAddress.__TYPE_ARGMethods in io.vertx.mutiny.core.net that return SocketAddressModifier and TypeMethodDescriptionstatic SocketAddressSocketAddress.domainSocketAddress(String path) static SocketAddressSocketAddress.inetSocketAddress(int port, String host) static SocketAddressSocketAddress.inetSocketAddress(InetSocketAddress address) NetSocket.localAddress()NetSocket.localAddress(boolean real) static SocketAddressSocketAddress.newInstance(io.vertx.core.net.SocketAddress arg) NetSocket.remoteAddress()NetSocket.remoteAddress(boolean real) static SocketAddressSocketAddress.sharedRandomPort(int id, String host) Methods in io.vertx.mutiny.core.net with parameters of type SocketAddressModifier and TypeMethodDescriptionio.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.NetClient.connectAndAwait(SocketAddress remoteAddress) Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress).NetClient.connectAndAwait(SocketAddress remoteAddress, String serverName) Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress,String).NetClient.connectAndForget(SocketAddress remoteAddress) Variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress)that ignores the result of the operation.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.listenAndAwait(SocketAddress localAddress) Blocking variant ofNetServer.listen(io.vertx.mutiny.core.net.SocketAddress).NetServer.listenAndForget(SocketAddress localAddress) Variant ofNetServer.listen(io.vertx.mutiny.core.net.SocketAddress)that ignores the result of the operation.