Uses of Class
io.vertx.reactivex.core.net.NetClient
-
Packages that use NetClient Package Description io.vertx.reactivex.core io.vertx.reactivex.core.net io.vertx.reactivex.ext.stomp -
-
Uses of NetClient in io.vertx.reactivex.core
Methods in io.vertx.reactivex.core that return NetClient Modifier and Type Method Description NetClientVertx. createNetClient()Create a TCP/SSL client using default optionsNetClientVertx. createNetClient(NetClientOptions options)Create a TCP/SSL client using the specified options -
Uses of NetClient in io.vertx.reactivex.core.net
Fields in io.vertx.reactivex.core.net with type parameters of type NetClient Modifier and Type Field Description static TypeArg<NetClient>NetClient. __TYPE_ARGMethods in io.vertx.reactivex.core.net that return NetClient Modifier and Type Method Description NetClientNetClient. connect(int port, String host)Open a connection to a server at the specificportandhost.NetClientNetClient. connect(int port, String host, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificportandhost.NetClientNetClient. connect(int port, String host, String serverName)Open a connection to a server at the specificportandhost.NetClientNetClient. connect(int port, String host, String serverName, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificportandhost.NetClientNetClient. connect(SocketAddress remoteAddress)Open a connection to a server at the specificremoteAddress.NetClientNetClient. connect(SocketAddress remoteAddress, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificremoteAddress.NetClientNetClient. connect(SocketAddress remoteAddress, String serverName)Open a connection to a server at the specificremoteAddress.NetClientNetClient. connect(SocketAddress remoteAddress, String serverName, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificremoteAddress.static NetClientNetClient. newInstance(NetClient arg) -
Uses of NetClient in io.vertx.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp with parameters of type NetClient Modifier and Type Method Description StompClientStompClient. connect(int port, String host, NetClient net)Connects to the server.StompClientStompClient. connect(int port, String host, NetClient net, Handler<AsyncResult<StompClientConnection>> resultHandler)Connects to the server.StompClientStompClient. connect(NetClient net)Connects to the server.StompClientStompClient. connect(NetClient net, Handler<AsyncResult<StompClientConnection>> resultHandler)Connects to the server.io.reactivex.Single<StompClientConnection>StompClient. rxConnect(int port, String host, NetClient net)Connects to the server.io.reactivex.Single<StompClientConnection>StompClient. rxConnect(NetClient net)Connects to the server.
-