| 10783 | |
| 10784 | |
| 10785 | bool Framework::isPending(const TaskID& taskId) const |
| 10786 | { |
| 10787 | foreachkey (const ExecutorID& executorId, pendingTasks) { |
| 10788 | if (pendingTasks.at(executorId).contains(taskId)) { |
| 10789 | return true; |
| 10790 | } |
| 10791 | } |
| 10792 | |
| 10793 | return false; |
| 10794 | } |
| 10795 | |
| 10796 | |
| 10797 | Option<TaskGroupInfo> Framework::getTaskGroupForPendingTask( |
no outgoing calls