Result handler methods for responding the ZRANGE to clients. */
| 2899 | |
| 2900 | /* Result handler methods for responding the ZRANGE to clients. */ |
| 2901 | static void zrangeResultBeginClient(zrange_result_handler *handler) { |
| 2902 | handler->userdata = addReplyDeferredLen(handler->client); |
| 2903 | } |
| 2904 | |
| 2905 | static void zrangeResultEmitCBufferToClient(zrange_result_handler *handler, |
| 2906 | const void *value, size_t value_length_in_bytes, double score) |
nothing calls this directly
no test coverage detected