| 43 | } |
| 44 | |
| 45 | void Executor::update_all() { |
| 46 | // Update all registered runners |
| 47 | for (auto* r : mRunners) { |
| 48 | if (r) { |
| 49 | r->update(); |
| 50 | } |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | bool Executor::has_active_tasks() const { |
| 55 | for (const auto* r : mRunners) { |
no test coverage detected