This API is used by the Redis core to unblock a client that was blocked * by a module. */
| 5484 | /* This API is used by the Redis core to unblock a client that was blocked |
| 5485 | * by a module. */ |
| 5486 | void moduleUnblockClient(client *c) { |
| 5487 | RedisModuleBlockedClient *bc = c->bpop.module_blocked_handle; |
| 5488 | moduleUnblockClientByHandle(bc,NULL); |
| 5489 | } |
| 5490 | |
| 5491 | /* Return true if the client 'c' was blocked by a module using |
| 5492 | * RM_BlockClientOnKeys(). */ |
no test coverage detected