UNPKG

redis-smq

Version:

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

9 lines 347 B
import { FactoryAbstract } from './factory-abstract.js'; import { ExchangeFanout } from '../../exchange/index.js'; export class FanoutExchangeFactory extends FactoryAbstract { static create = () => { this.ensureInitialized(); return this.track(new ExchangeFanout()); }; } //# sourceMappingURL=fanout-exchange-factory.js.map