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.beginHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a BEGIN frame is received.
|
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.
|
StompServerHandler |
StompServerHandler.disconnectHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a DISCONNECT frame is received.
|
StompServerHandler |
StompServerHandler.nackHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the action to execute when a NACK frame is received.
|
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 |
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.
|
StompServer |
StompServer.writingFrameHandler(io.vertx.core.Handler<ServerFrame> handler) |
Configures the handler that is invoked every time a frame is going to be written to the "wire".
|