Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 1x | 'use strict'; module.exports = { /** * Control message operations. * * @name CtrlOp * @readonly * @enum {string} */ CtrlOp: { AddDevice: 'add-device', AddDeviceBulk: 'add-device-bulk', AddDeviceRange: 'add-device-range', DelDevice: 'del-device', DelDeviceBulk: 'del-device-bulk', DelDeviceRange: 'del-device-range', }, /** * Errors. * * @name Errors * @readonly * @enum {string} */ Errors: { ErrParamCorrId: 'the `correlationId` must be a non-empty string', ErrParamDev: 'one of `device_id` or [`network_code`, `network_addr`] pair must be provided with non-empty string', }, /** * ApplicationMgr/NetworkMgr status. * * @name MgrStatus * @readonly * @enum {Symbol} */ MgrStatus: { NotReady: Symbol(), Ready: Symbol(), }, /** * Support application/network host schemes. */ SupportSchemes: ['amqp', 'amqps', 'mqtt', 'mqtts'], }; |