open class SockJSHandler : Handler<RoutingContext>
A handler that allows you to handle SockJS connections from clients.
We currently support version 0.3.3 of the SockJS protocol, which can be found in this tag:
NOTE: This class has been automatically generated from the io.vertx.ext.web.handler.sockjs.SockJSHandler non RX-ified interface using Vert.x codegen.
SockJSHandler(delegate: SockJSHandler) |
static val __TYPE_ARG: TypeArg<SockJSHandler> |
open fun bridge(bridgeOptions: BridgeOptions): SockJSHandler
Bridge the SockJS handler to the Vert.x event bus. This basically installs a built-in SockJS socket handler which takes SockJS traffic and bridges it to the event bus, thus allowing you to extend the server-side Vert.x event bus to browsers open fun bridge(bridgeOptions: BridgeOptions, bridgeEventHandler: Handler<BridgeEvent>): SockJSHandler
Like |
|
open static fun create(vertx: Vertx): SockJSHandleropen static fun create(vertx: Vertx, options: SockJSHandlerOptions): SockJSHandler
Create a SockJS handler |
|
open fun equals(other: Any?): Boolean |
|
open fun getDelegate(): SockJSHandler |
|
open fun handle(arg0: RoutingContext): Unit |
|
open fun hashCode(): Int |
|
open static fun installTestApplications(router: Router, vertx: Vertx): Unit
Install SockJS test applications on a router - used when running the SockJS test suite |
|
open static fun newInstance(arg: SockJSHandler): SockJSHandler |
|
open fun socketHandler(handler: Handler<SockJSSocket>): SockJSHandler
Set a SockJS socket handler. This handler will be called with a SockJS socket whenever a SockJS connection is made from a client |
|
open fun toString(): String |