UNPKG

redis-smq

Version:

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

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