UNPKG

redis-smq

Version:

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

9 lines 344 B
import { FactoryAbstract } from './factory-abstract.js'; import { QueueManager } from '../../queue-manager/index.js'; export class QueueManagerFactory extends FactoryAbstract { static create = () => { this.ensureInitialized(); return this.track(new QueueManager()); }; } //# sourceMappingURL=queue-manager-factory.js.map