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