Function
parseCommand
(parser: CommandParser, keys: RedisVariadicArgument, timeout: number)
Source from the content-addressed store, hash-verified
| 5 | export default { |
| 6 | IS_READ_ONLY: false, |
| 7 | parseCommand(parser: CommandParser, keys: RedisVariadicArgument, timeout: number) { |
| 8 | parser.push('BZPOPMAX'); |
| 9 | parser.pushKeys(keys); |
| 10 | parser.push(timeout.toString()); |
| 11 | }, |
| 12 | transformReply: { |
| 13 | 2( |
| 14 | reply: UnwrapReply<NullReply | TuplesReply<[BlobStringReply, BlobStringReply, BlobStringReply]>>, |
Callers
nothing calls this directly
Tested by
no test coverage detected