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