open static fun create(vertx: Vertx, options: StompServerOptions): StompServer
Creates a StompServer based on the default Stomp Server implementation.
vertx - the vert.x instance to use
Return
the created StompServer
open static fun create(vertx: Vertx, netServer: NetServer): StompServer
Creates a StompServer based on the default Stomp Server implementation.
vertx - the vert.x instance to use
netServer - the Net server used by the STOMP server
Return
the created StompServer
open static fun create(vertx: Vertx, net: NetServer, options: StompServerOptions): StompServer
Creates a StompServer based on the default Stomp Server implementation.
vertx - the vert.x instance to use
net - the Net server used by the STOMP server
Return
the created StompServer
open static fun create(vertx: Vertx): StompServer
Creates a StompServer based on the default Stomp Server implementation, and use the default options.
vertx - the vert.x instance to use
Return
the created StompServer