UNPKG

kevoree-group-centralizedws

Version:

WebSocket group based on a centralized architecture that only sends partial model to connected clients

19 lines (12 loc) 209 B
const TYPE = 'pull'; function PullMessage() {} PullMessage.prototype = { getType() { return TYPE; }, toRaw() { return TYPE; } }; module.exports = PullMessage; module.exports.TYPE = TYPE;