redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
14 lines • 562 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueueLockOwnerMismatchError = void 0;
const redis_smq_common_1 = require("redis-smq-common");
class QueueLockOwnerMismatchError extends redis_smq_common_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.Queue.QueueLockOwnerMismatch',
defaultMessage: 'Queue lock is owned by other process',
};
}
}
exports.QueueLockOwnerMismatchError = QueueLockOwnerMismatchError;
//# sourceMappingURL=queue-lock-owner-mismatch.error.js.map