| 325 | |
| 326 | |
| 327 | Execution* Conductor::getExecution(int exec_id) |
| 328 | { |
| 329 | auto it = executions_.find(exec_id); |
| 330 | if (it == executions_.end()) { |
| 331 | return nullptr; |
| 332 | } |
| 333 | return &*it->second; |
| 334 | } |
| 335 | |
| 336 | ExecutionWindow &Conductor::getExecutionWindow(Execution *e) |
| 337 | { |
no test coverage detected