UNPKG

@cfm/sonar-types

Version:

shared components for server status main application

33 lines (32 loc) 605 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Event on client connection * * client->server * * Contains the initial list of servers and their metadata */ exports.CLIENT_INIT = 'client:add'; /** * Event on daemon stop * * server->client * * @todo rename to WORKER_DESTROYED */ exports.WORKER_DESTROY = 'worker:remove'; /** * Event on daemon start * * worker->server * server->client */ exports.WORKER_INIT = 'worker:add'; /** * Event on occupation change * * worker->server * server->client */ exports.WORKER_OCCUPANCY_CHANGED = 'worker:change';