Пример #1
0
 def all_successors(self):
     """
     :return: (list) all tasks that descend from this task in the task_graph
     """
     return set(
         breadth_first_search.bfs_successors(self.execution.task_graph(),
                                             self).values())
Пример #2
0
 def all_successors(self):
     """
     :return: (list) all tasks that descend from this task in the task_graph
     """
     return set(breadth_first_search.bfs_successors(self.execution.task_graph(), self).values())