static StompServer |
StompServer.create(Vertx vertx) |
Creates a StompServer based on the default Stomp Server implementation, and use the default options.
|
static StompServer |
StompServer.create(Vertx vertx,
io.vertx.ext.stomp.StompServerOptions options) |
Creates a StompServer based on the default Stomp Server implementation.
|
static StompServer |
StompServer.create(Vertx vertx,
NetServer netServer) |
Creates a StompServer based on the default Stomp Server implementation.
|
static StompServer |
StompServer.create(Vertx vertx,
NetServer net,
io.vertx.ext.stomp.StompServerOptions options) |
Creates a StompServer based on the default Stomp Server implementation.
|
StompServer |
StompServer.handler(StompServerHandler handler) |
|
StompServer |
StompServer.listen() |
Connects the STOMP server default port (61613) and network interface (0.0.0.0).
|
StompServer |
StompServer.listen(int port) |
Connects the STOMP server to the given port.
|
StompServer |
StompServer.listen(int port,
io.vertx.core.Handler<io.vertx.core.AsyncResult<StompServer>> handler) |
Connects the STOMP server to the given port.
|
StompServer |
StompServer.listen(int port,
String host) |
Connects the STOMP server to the given port / interface.
|
StompServer |
StompServer.listen(int port,
String host,
io.vertx.core.Handler<io.vertx.core.AsyncResult<StompServer>> handler) |
Connects the STOMP server to the given port / interface.
|
StompServer |
StompServer.listen(io.vertx.core.Handler<io.vertx.core.AsyncResult<StompServer>> handler) |
Connects the STOMP server default port (61613) and network interface (0.0.0.0).
|
static StompServer |
StompServer.newInstance(io.vertx.ext.stomp.StompServer arg) |
|
StompServer |
StompServerConnection.server() |
|
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".
|