UNPKG

redis-smq

Version:

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

9 lines 351 B
import { FactoryAbstract } from './factory-abstract.js'; import { QueueRateLimit } from '../../queue-rate-limit/index.js'; export class RateLimitFactory extends FactoryAbstract { static create = () => { this.ensureInitialized(); return this.track(new QueueRateLimit()); }; } //# sourceMappingURL=queue-rate-limit-factory.js.map