| 1191 | } |
| 1192 | |
| 1193 | void* RedisClusterChannel::RunAsyncCall(void* arg) { |
| 1194 | std::unique_ptr<AsyncCall> ac(static_cast<AsyncCall*>(arg)); |
| 1195 | ac->self->CallMethodImpl(ac->cntl, *ac->request, ac->response); |
| 1196 | ac->done->Run(); |
| 1197 | return NULL; |
| 1198 | } |
| 1199 | |
| 1200 | int RedisClusterChannel::CheckHealth() { |
| 1201 | std::string endpoint; |
nothing calls this directly
no test coverage detected