UNPKG

@nestjs/microservices

Version:

Nest - modern, fast, powerful node.js web framework (@microservices)

16 lines (15 loc) 292 B
import { BaseRpcContext } from './base-rpc.context.js'; /** * @publicApi */ export class RedisContext extends BaseRpcContext { constructor(args) { super(args); } /** * Returns the name of the channel. */ getChannel() { return this.args[0]; } }