Function
parseCommand
(
parser: CommandParser,
key: RedisArgument,
group: RedisArgument,
consumer: RedisArgument
)
Source from the content-addressed store, hash-verified
| 7 | export default { |
| 8 | IS_READ_ONLY: false, |
| 9 | parseCommand( |
| 10 | parser: CommandParser, |
| 11 | key: RedisArgument, |
| 12 | group: RedisArgument, |
| 13 | consumer: RedisArgument |
| 14 | ) { |
| 15 | parser.push('XGROUP', 'DELCONSUMER'); |
| 16 | parser.pushKey(key); |
| 17 | parser.push(group, consumer); |
| 18 | }, |
| 19 | transformReply: undefined as unknown as () => NumberReply |
| 20 | } as const satisfies Command; |
Callers
nothing calls this directly
Tested by
no test coverage detected