BRPOPLPUSH */
| 1026 | |
| 1027 | /* BRPOPLPUSH <source> <destination> <timeout> */ |
| 1028 | void brpoplpushCommand(client *c) { |
| 1029 | mstime_t timeout; |
| 1030 | if (getTimeoutFromObjectOrReply(c,c->argv[3],&timeout,UNIT_SECONDS) |
| 1031 | != C_OK) return; |
| 1032 | blmoveGenericCommand(c, LIST_TAIL, LIST_HEAD, timeout); |
| 1033 | } |
nothing calls this directly
no test coverage detected