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.

9 lines • 306 B
import { Channel } from 'amqplib'; import { QueueOptions } from '../types'; export declare class Consumer { private getChannel; private messageProcessor; constructor(getChannel: () => Channel); registerConsumer(options: QueueOptions): Promise<void>; } //# sourceMappingURL=consumer.d.ts.map