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