| 525 | } |
| 526 | |
| 527 | void Coordinator::WaitOnExecRpcs() { |
| 528 | if (exec_rpcs_complete_.Load()) return; |
| 529 | for (BackendState* backend_state : backend_states_) { |
| 530 | backend_state->WaitOnExecRpc(); |
| 531 | } |
| 532 | exec_rpcs_complete_.Store(true); |
| 533 | } |
| 534 | |
| 535 | Status Coordinator::StartBackendExec() { |
| 536 | int num_backends = backend_states_.size(); |
nothing calls this directly
no test coverage detected