This API is used by the Redis core to unblock a client that was blocked * by a module. */
| 5593 | /* This API is used by the Redis core to unblock a client that was blocked |
| 5594 | * by a module. */ |
| 5595 | void moduleUnblockClient(client *c) { |
| 5596 | RedisModuleBlockedClient *bc = (RedisModuleBlockedClient*)c->bpop.module_blocked_handle; |
| 5597 | moduleUnblockClientByHandle(bc,NULL); |
| 5598 | } |
| 5599 | |
| 5600 | /* Return true if the client 'c' was blocked by a module using |
| 5601 | * RM_BlockClientOnKeys(). */ |
no test coverage detected