vertx / io.vertx.ext.stomp / StompServer / create

create

open static fun create(vertx: Vertx, options: StompServerOptions): StompServer

Creates a StompServer based on the default Stomp Server implementation.

Parameters

vertx - the vert.x instance to use

options - the server options

Return
the created StompServer

open static fun create(vertx: Vertx, netServer: NetServer): StompServer

Creates a StompServer based on the default Stomp Server implementation.

Parameters

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.

Parameters

vertx - the vert.x instance to use

net - the Net server used by the STOMP server

options - the server options

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.

Parameters

vertx - the vert.x instance to use

Return
the created StompServer