Function
parseCommand
(parser: CommandParser, source: RedisArgument, destination: RedisArgument, timeout: number)
Source from the content-addressed store, hash-verified
| 4 | export default { |
| 5 | IS_READ_ONLY: false, |
| 6 | parseCommand(parser: CommandParser, source: RedisArgument, destination: RedisArgument, timeout: number) { |
| 7 | parser.push('BRPOPLPUSH'); |
| 8 | parser.pushKeys([source, destination]); |
| 9 | parser.push(timeout.toString()); |
| 10 | }, |
| 11 | transformReply: undefined as unknown as () => BlobStringReply | NullReply |
| 12 | } as const satisfies Command; |
Callers
nothing calls this directly
Tested by
no test coverage detected