UNPKG

redis-smq

Version:

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

10 lines 324 B
import { RedisSMQError } from 'redis-smq-common'; export class ProducerNotRunningError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Producer.NotRunning', defaultMessage: 'Producer is not running.', }; } } //# sourceMappingURL=producer-not-running.error.js.map