Send an integer reply to the client, with the specified long long value. * The function always returns REDISMODULE_OK. */
| 1494 | /* Send an integer reply to the client, with the specified long long value. |
| 1495 | * The function always returns REDISMODULE_OK. */ |
| 1496 | int RM_ReplyWithLongLong(RedisModuleCtx *ctx, long long ll) { |
| 1497 | client *c = moduleGetReplyClient(ctx); |
| 1498 | if (c == NULL) return REDISMODULE_OK; |
| 1499 | addReplyLongLong(c,ll); |
| 1500 | return REDISMODULE_OK; |
| 1501 | } |
| 1502 | |
| 1503 | /* Reply with the error 'err'. |
| 1504 | * |
nothing calls this directly
no test coverage detected