BLPOP [ ...] */
| 981 | |
| 982 | /* BLPOP <key> [<key> ...] <timeout> */ |
| 983 | void blpopCommand(client *c) { |
| 984 | blockingPopGenericCommand(c,LIST_HEAD); |
| 985 | } |
| 986 | |
| 987 | /* BLPOP <key> [<key> ...] <timeout> */ |
| 988 | void brpopCommand(client *c) { |
nothing calls this directly
no test coverage detected