| 6726 | |
| 6727 | |
| 6728 | Executor* Slave::getExecutor( |
| 6729 | const FrameworkID& frameworkId, |
| 6730 | const ExecutorID& executorId) const |
| 6731 | { |
| 6732 | Framework* framework = getFramework(frameworkId); |
| 6733 | if (framework != nullptr) { |
| 6734 | return framework->getExecutor(executorId); |
| 6735 | } |
| 6736 | |
| 6737 | return nullptr; |
| 6738 | } |
| 6739 | |
| 6740 | |
| 6741 | Executor* Slave::getExecutor(const ContainerID& containerId) const |
no test coverage detected