BZPOPMIN key [key ...] timeout
| 3979 | |
| 3980 | // BZPOPMIN key [key ...] timeout |
| 3981 | void bzpopminCommand(client *c) { |
| 3982 | blockingGenericZpopCommand(c,ZSET_MIN); |
| 3983 | } |
| 3984 | |
| 3985 | // BZPOPMAX key [key ...] timeout |
| 3986 | void bzpopmaxCommand(client *c) { |
nothing calls this directly
no test coverage detected