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()Create a TCP/SSL client using default optionsVertx.createNetClient(io.vertx.core.net.NetClientOptions options) Create a TCP/SSL client using the specified optionsVertx.createNetClient(io.vertx.core.net.TcpClientConfig config) Create a TCP/SSL client using the specified configVertx.createNetClient(io.vertx.core.net.TcpClientConfig config, io.vertx.core.net.ClientSSLOptions sslOptions) Create a TCP/SSL client using the specified config and the specified ssl 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.closeAndForget()Close immediately (shutdown(0, TimeUnit.SECONDS).NetClient.connectAndForget(int port, String host) Open a connection to a server at the specificportandhost.NetClient.connectAndForget(int port, String host, String serverName) Open a connection to a server at the specificportandhost.NetClient.connectAndForget(io.vertx.core.net.ConnectOptions connectOptions) Open a connection to a server at the specificconnectOptions.NetClient.connectAndForget(io.vertx.core.net.SocketAddress remoteAddress) Open a connection to a server at the specificremoteAddress.NetClient.connectAndForget(io.vertx.core.net.SocketAddress remoteAddress, String serverName) Open a connection to a server at the specificremoteAddress.static NetClientNetClient.newInstance(io.vertx.core.net.NetClient delegate) Creates a new instance of theNetClient.NetClient.shutdownAndForget()Shutdown with a 30 seconds timeout (shutdown(30, TimeUnit.SECONDS)).NetClient.shutdownAndForget(long timeout, TimeUnit unit) Callsshutdown(Duration).NetClient.shutdownAndForget(Duration timeout) Initiate the client shutdown sequence.NetClient.updateSSLOptionsAndForget(io.vertx.core.net.ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.updateSSLOptionsAndForget(io.vertx.core.net.ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.