@nestjstools/messaging-rabbitmq-extension
Version:
Extension to handle messages and dispatch them over AMQP protocol
7 lines (6 loc) • 307 B
TypeScript
import { AmqpChannel } from './amqp.channel';
import { IChannelFactory } from '@nestjstools/messaging';
import { RmqChannelConfig } from './rmq-channel.config';
export declare class RmqChannelFactory implements IChannelFactory<RmqChannelConfig> {
create(channelConfig: RmqChannelConfig): AmqpChannel;
}