redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
9 lines • 347 B
JavaScript
import { FactoryAbstract } from './factory-abstract.js';
import { ExchangeDirect } from '../../exchange/index.js';
export class DirectExchangeFactory extends FactoryAbstract {
static create = () => {
this.ensureInitialized();
return this.track(new ExchangeDirect());
};
}
//# sourceMappingURL=direct-exchange-factory.js.map