UNPKG

@nestjstools/messaging-redis-extension

Version:

Extension to handle messages and dispatch them over Redis

7 lines (6 loc) 320 B
import { RedisChannel } from './redis.channel'; import { IChannelFactory } from '@nestjstools/messaging'; import { RedisChannelConfig } from './redis.channel-config'; export declare class RedisChannelFactory implements IChannelFactory<RedisChannelConfig> { create(channelConfig: RedisChannelConfig): RedisChannel; }