| 12890 | |
| 12891 | |
| 12892 | bool Slave::hasExecutor(const FrameworkID& frameworkId, |
| 12893 | const ExecutorID& executorId) const |
| 12894 | { |
| 12895 | return executors.contains(frameworkId) && |
| 12896 | executors.at(frameworkId).contains(executorId); |
| 12897 | } |
| 12898 | |
| 12899 | |
| 12900 | void Slave::addExecutor(const FrameworkID& frameworkId, |
no test coverage detected