UNPKG

redis-smq

Version:

A high-performance, reliable, and scalable message queue for Node.js.

20 lines 1.07 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EExchangeProperty = exports.EExchangeQueuePolicy = exports.EExchangeType = void 0; var EExchangeType; (function (EExchangeType) { EExchangeType[EExchangeType["DIRECT"] = 0] = "DIRECT"; EExchangeType[EExchangeType["FANOUT"] = 1] = "FANOUT"; EExchangeType[EExchangeType["TOPIC"] = 2] = "TOPIC"; })(EExchangeType || (exports.EExchangeType = EExchangeType = {})); var EExchangeQueuePolicy; (function (EExchangeQueuePolicy) { EExchangeQueuePolicy[EExchangeQueuePolicy["STANDARD"] = 0] = "STANDARD"; EExchangeQueuePolicy[EExchangeQueuePolicy["PRIORITY"] = 1] = "PRIORITY"; })(EExchangeQueuePolicy || (exports.EExchangeQueuePolicy = EExchangeQueuePolicy = {})); var EExchangeProperty; (function (EExchangeProperty) { EExchangeProperty[EExchangeProperty["TYPE"] = 0] = "TYPE"; EExchangeProperty[EExchangeProperty["QUEUE_POLICY"] = 1] = "QUEUE_POLICY"; })(EExchangeProperty || (exports.EExchangeProperty = EExchangeProperty = {})); //# sourceMappingURL=exchange.js.map