StompServerHandler |
StompServerHandler.abortHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a ABORT frame is received.
|
StompServerHandler |
StompServerHandler.ackHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a ACK frame is received.
|
StompServerHandler |
StompServerHandler.authProvider(AuthenticationProvider handler) |
Configures the to be used to authenticate the user.
|
StompServerHandler |
StompServerHandler.beginHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a BEGIN frame is received.
|
StompServerHandler |
StompServerHandler.bridge(io.vertx.ext.stomp.BridgeOptions options) |
Configures the STOMP server to act as a bridge with the Vert.x event bus.
|
StompServerHandler |
StompServerHandler.closeHandler(io.vertx.core.Handler<StompServerConnection> handler) |
Configures the action to execute when a connection with the client is closed.
|
StompServerHandler |
StompServerHandler.commitHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a COMMIT frame is received.
|
StompServerHandler |
StompServerHandler.connectHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a CONNECT frame is received.
|
static StompServerHandler |
StompServerHandler.create(Vertx vertx) |
|
StompServerHandler |
StompServerHandler.destinationFactory(DestinationFactory factory) |
|
StompServerHandler |
StompServerHandler.disconnectHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a DISCONNECT frame is received.
|
StompServerHandler |
StompServerConnection.handler() |
|
StompServerHandler |
StompServerHandler.nackHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a NACK frame is received.
|
static StompServerHandler |
StompServerHandler.newInstance(io.vertx.ext.stomp.StompServerHandler arg) |
|
StompServerHandler |
StompServerHandler.onAck(StompServerConnection connection,
io.vertx.ext.stomp.Frame subscribe,
List<io.vertx.ext.stomp.Frame> messages) |
Method called by single message (client-individual policy) or a set of message (client policy) are acknowledged.
|
StompServerHandler |
StompServerHandler.onAckHandler(io.vertx.core.Handler<Acknowledgement> handler) |
Configures the action to execute when messages are acknowledged.
|
StompServerHandler |
StompServerHandler.onAuthenticationRequest(StompServerConnection connection,
String login,
String passcode) |
Called when the client connects to a server requiring authentication.
|
StompServerHandler |
StompServerHandler.onAuthenticationRequest(StompServerConnection connection,
String login,
String passcode,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Boolean>> handler) |
Called when the client connects to a server requiring authentication.
|
StompServerHandler |
StompServerHandler.onNack(StompServerConnection connection,
io.vertx.ext.stomp.Frame subscribe,
List<io.vertx.ext.stomp.Frame> messages) |
Method called by single message (client-individual policy) or a set of message (client policy) are
not acknowledged.
|
StompServerHandler |
StompServerHandler.onNackHandler(io.vertx.core.Handler<Acknowledgement> handler) |
Configures the action to execute when messages are not acknowledged.
|
StompServerHandler |
StompServerHandler.pingHandler(io.vertx.core.Handler<StompServerConnection> handler) |
Allows customizing the action to do when the server needs to send a `PING` to the client.
|
StompServerHandler |
StompServerHandler.receivedFrameHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures a handler that get notified when a STOMP frame is received by the server.
|
StompServerHandler |
StompServerHandler.sendHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a SEND frame is received.
|
StompServerHandler |
StompServer.stompHandler() |
|
StompServerHandler |
StompServerHandler.stompHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a STOMP frame is received.
|
StompServerHandler |
StompServerHandler.subscribeHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a SUBSCRIBE frame is received.
|
StompServerHandler |
StompServerHandler.unsubscribeHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a UNSUBSCRIBE frame is received.
|