You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
317 B
12 lines
317 B
import {Event} from '../../support/bus'
|
|
import {uuid4} from '../../util'
|
|
|
|
/** Event used to tell the server to close the websocket connection. */
|
|
export class WebSocketHealthCheckEvent implements Event {
|
|
eventName = '@extollo/lib:WebSocketHealthCheckEvent'
|
|
|
|
eventUuid = uuid4()
|
|
|
|
shouldBroadcast = false
|
|
}
|