Uses of Class
io.vertx.mutiny.core.net.NetClient
Packages that use NetClient
-
Uses of NetClient in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return NetClientModifier and TypeMethodDescriptionVertx.createNetClient()
Vertx.createNetClient
(io.vertx.core.net.NetClientOptions options) -
Uses of NetClient in io.vertx.mutiny.core.net
Fields in io.vertx.mutiny.core.net with type parameters of type NetClientMethods in io.vertx.mutiny.core.net that return NetClientModifier and TypeMethodDescriptionNetClient.connectAndForget
(int port, String host) Variant ofconnect(int,String)
that ignores the result of the operation.NetClient.connectAndForget
(int port, String host, String serverName) Variant ofconnect(int,String,String)
that ignores the result of the operation.NetClient.connectAndForget
(SocketAddress remoteAddress) Variant ofconnect(io.vertx.mutiny.core.net.SocketAddress)
that ignores the result of the operation.NetClient.connectAndForget
(SocketAddress remoteAddress, String serverName) Variant ofconnect(io.vertx.mutiny.core.net.SocketAddress,String)
that ignores the result of the operation.static NetClient
NetClient.newInstance
(io.vertx.core.net.NetClient arg) -
Uses of NetClient in io.vertx.mutiny.ext.stomp
Methods in io.vertx.mutiny.ext.stomp with parameters of type NetClientModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<StompClientConnection>
Connects to the server.io.smallrye.mutiny.Uni<StompClientConnection>
Connects to the server.StompClient.connectAndAwait
(int port, String host, NetClient net) Blocking variant ofStompClient.connect(int,String,io.vertx.mutiny.core.net.NetClient)
.StompClient.connectAndAwait
(NetClient net) Blocking variant ofStompClient.connect(io.vertx.mutiny.core.net.NetClient)
.StompClient.connectAndForget
(int port, String host, NetClient net) Variant ofStompClient.connect(int,String,io.vertx.mutiny.core.net.NetClient)
that ignores the result of the operation.StompClient.connectAndForget
(NetClient net) Variant ofStompClient.connect(io.vertx.mutiny.core.net.NetClient)
that ignores the result of the operation.