Uses of Class
io.vertx.mutiny.core.net.SocketAddress
-
Packages that use SocketAddress Package Description io.vertx.mutiny.core.datagram io.vertx.mutiny.core.http io.vertx.mutiny.core.net -
-
Uses of SocketAddress in io.vertx.mutiny.core.datagram
Methods in io.vertx.mutiny.core.datagram that return SocketAddress Modifier and Type Method Description SocketAddressDatagramSocket. localAddress()SocketAddressDatagramPacket. 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 SocketAddressHttpConnection. localAddress()SocketAddressHttpConnection. localAddress(boolean real)SocketAddressHttpServerRequest. localAddress()SocketAddressServerWebSocket. localAddress()SocketAddressWebSocket. localAddress()SocketAddressWebSocketBase. localAddress()SocketAddressHttpConnection. remoteAddress()SocketAddressHttpConnection. remoteAddress(boolean real)SocketAddressHttpServerRequest. remoteAddress()SocketAddressServerWebSocket. remoteAddress()SocketAddressWebSocket. remoteAddress()SocketAddressWebSocketBase. 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).HttpServerHttpServer. listenAndAwait(SocketAddress address)Blocking variant ofHttpServer.listen(io.vertx.mutiny.core.net.SocketAddress).HttpServerHttpServer. 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_ARGMethods in io.vertx.mutiny.core.net that return SocketAddress Modifier and Type Method Description static SocketAddressSocketAddress. domainSocketAddress(String path)static SocketAddressSocketAddress. inetSocketAddress(int port, String host)static SocketAddressSocketAddress. inetSocketAddress(InetSocketAddress address)SocketAddressNetSocket. localAddress()SocketAddressNetSocket. localAddress(boolean real)static SocketAddressSocketAddress. newInstance(io.vertx.core.net.SocketAddress arg)SocketAddressNetSocket. remoteAddress()SocketAddressNetSocket. remoteAddress(boolean real)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.NetSocketNetClient. connectAndAwait(SocketAddress remoteAddress)Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress).NetSocketNetClient. connectAndAwait(SocketAddress remoteAddress, String serverName)Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress,String).NetClientNetClient. connectAndForget(SocketAddress remoteAddress)Variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress)that ignores the result of the operation.NetClientNetClient. 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.NetServerNetServer. listenAndAwait(SocketAddress localAddress)Blocking variant ofNetServer.listen(io.vertx.mutiny.core.net.SocketAddress).NetServerNetServer. listenAndForget(SocketAddress localAddress)Variant ofNetServer.listen(io.vertx.mutiny.core.net.SocketAddress)that ignores the result of the operation.
-