UNPKG

rabbitmq-enterprise-toolkit

Version:

🚀 Enterprise-grade RabbitMQ wrapper for Node.js & TypeScript - High-throughput messaging with automatic retry, DLQ, batch processing & graceful shutdown. Production-ready AMQP client with zero message loss guarantee.

12 lines • 397 B
import { Channel } from 'amqplib'; import { QueueOptions } from '../types'; export declare class QueueManager { private getChannel; constructor(getChannel: () => Channel); setupQueue(options: QueueOptions): Promise<void>; private createDeadLetterQueue; private createMainQueue; private setPrefetchCount; private getDLQName; } //# sourceMappingURL=queue-manager.d.ts.map