StompClient |
StompClient.connect() |
Connects to the server using the host and port configured in the client's options.
|
StompClient |
StompClient.connect(int port,
String host) |
Connects to the server.
|
StompClient |
StompClient.connect(int port,
String host,
io.vertx.core.Handler<io.vertx.core.AsyncResult<StompClientConnection>> resultHandler) |
Connects to the server.
|
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(io.vertx.core.Handler<io.vertx.core.AsyncResult<StompClientConnection>> resultHandler) |
Connects to the server using the host and port configured in the client's options.
|
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.
|
static StompClient |
StompClient.create(Vertx vertx) |
Creates a StompClient using the default implementation.
|
static StompClient |
StompClient.create(Vertx vertx,
io.vertx.ext.stomp.StompClientOptions options) |
Creates a StompClient using the default implementation.
|
StompClient |
StompClient.errorFrameHandler(io.vertx.core.Handler<io.vertx.ext.stomp.Frame> handler) |
A general error frame handler.
|
StompClient |
StompClient.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
Sets an exception handler notified for TCP-level errors.
|
static StompClient |
StompClient.newInstance(io.vertx.ext.stomp.StompClient arg) |
|
StompClient |
StompClient.receivedFrameHandler(io.vertx.core.Handler<io.vertx.ext.stomp.Frame> handler) |
Configures a received handler that gets notified when a STOMP frame is received by the client.
|
StompClient |
StompClient.writingFrameHandler(io.vertx.core.Handler<io.vertx.ext.stomp.Frame> handler) |
Configures a writing handler that gets notified when a STOMP frame is written on the wire.
|