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