Package | Description |
---|---|
io.vertx.rxjava.core | |
io.vertx.rxjava.core.net | |
io.vertx.rxjava.ext.stomp |
Modifier and Type | Method and Description |
---|---|
NetClient |
Vertx.createNetClient()
Create a TCP/SSL client using default options
|
NetClient |
Vertx.createNetClient(io.vertx.core.net.NetClientOptions options)
Create a TCP/SSL client using the specified options
|
Modifier and Type | Field and Description |
---|---|
static TypeArg<NetClient> |
NetClient.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
NetClient |
NetClient.connect(int port,
String host)
Open a connection to a server at the specific
port and host . |
NetClient |
NetClient.connect(int port,
String host,
io.vertx.core.Handler<io.vertx.core.AsyncResult<NetSocket>> connectHandler)
Open a connection to a server at the specific
port and host . |
NetClient |
NetClient.connect(int port,
String host,
String serverName)
Open a connection to a server at the specific
port and host . |
NetClient |
NetClient.connect(int port,
String host,
String serverName,
io.vertx.core.Handler<io.vertx.core.AsyncResult<NetSocket>> connectHandler)
Open a connection to a server at the specific
port and host . |
NetClient |
NetClient.connect(SocketAddress remoteAddress)
Open a connection to a server at the specific
remoteAddress . |
NetClient |
NetClient.connect(SocketAddress remoteAddress,
io.vertx.core.Handler<io.vertx.core.AsyncResult<NetSocket>> connectHandler)
Open a connection to a server at the specific
remoteAddress . |
NetClient |
NetClient.connect(SocketAddress remoteAddress,
String serverName)
Open a connection to a server at the specific
remoteAddress . |
NetClient |
NetClient.connect(SocketAddress remoteAddress,
String serverName,
io.vertx.core.Handler<io.vertx.core.AsyncResult<NetSocket>> connectHandler)
Open a connection to a server at the specific
remoteAddress . |
static NetClient |
NetClient.newInstance(io.vertx.core.net.NetClient arg) |
Modifier and Type | Method and Description |
---|---|
StompClient |
StompClient.connect(int port,
String host,
NetClient net)
Connects to the server.
|
StompClient |
StompClient.connect(int port,
String host,
NetClient net,
io.vertx.core.Handler<io.vertx.core.AsyncResult<StompClientConnection>> resultHandler)
Connects to the server.
|
StompClient |
StompClient.connect(NetClient net)
Connects to the server.
|
StompClient |
StompClient.connect(NetClient net,
io.vertx.core.Handler<io.vertx.core.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.
|
Copyright © 2021 Eclipse. All rights reserved.