@kastov/messaging-redis-extension
Version:
Extension to handle messages and dispatch them over Redis
9 lines (8 loc) • 330 B
TypeScript
import { Channel } from '@nestjstools/messaging';
import { RedisChannelConfig } from './redis.channel-config';
import { Queue } from 'bullmq';
export declare class RedisChannel extends Channel<RedisChannelConfig> {
readonly config: RedisChannelConfig;
readonly queue: Queue;
constructor(config: RedisChannelConfig);
}