@nestjstools/messaging
Version:
Simplifies asynchronous and synchronous message handling with support for buses, handlers, channels, and consumers. Build scalable, decoupled applications with ease and reliability.
7 lines (6 loc) • 335 B
TypeScript
import { IChannelFactory } from '../i-channel-factory';
import { ChannelConfig, InMemoryChannelConfig } from '../../config';
import { Channel } from '../channel';
export declare class InMemoryChannelFactory implements IChannelFactory<InMemoryChannelConfig> {
create(channelConfig: ChannelConfig): Channel<InMemoryChannelConfig>;
}