UNPKG

redis-smq

Version:

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

10 lines 354 B
import { RedisSMQError } from 'redis-smq-common'; export class QueueLockOwnerMismatchError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Queue.QueueLockOwnerMismatch', defaultMessage: 'Queue lock is owned by other process', }; } } //# sourceMappingURL=queue-lock-owner-mismatch.error.js.map