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.

11 lines • 425 B
import { Channel, ConsumeMessage } from 'amqplib'; import { QueueOptions } from '../types'; export declare class MessageProcessor { private getChannel; private retryHandler; constructor(getChannel: () => Channel); processMessage(msg: ConsumeMessage, options: QueueOptions): Promise<void>; private handleProcessingError; private createProcessedMessage; } //# sourceMappingURL=message-processor.d.ts.map