| 695 | } |
| 696 | |
| 697 | bool TaskManager::is_current_task_timed_out() { |
| 698 | bool timed_out = false; |
| 699 | group_id_to_description.for_each([&](auto &v) { |
| 700 | if (v.second->is_timed_out()) { |
| 701 | timed_out = true; |
| 702 | } |
| 703 | }); |
| 704 | return timed_out; |
| 705 | } |
| 706 | |
| 707 | bool TaskManager::is_current_task_completed(TaskManagerID p_task_id) const { |
| 708 | bool done = false; |
no test coverage detected