Did all of the tasks complete? (either by success of failure). Returns: bool: true if all of the tasks have been executed.
(self)
| 646 | return any(not result.ready() for result in self.results) |
| 647 | |
| 648 | def ready(self): |
| 649 | """Did all of the tasks complete? (either by success of failure). |
| 650 | |
| 651 | Returns: |
| 652 | bool: true if all of the tasks have been executed. |
| 653 | """ |
| 654 | return all(result.ready() for result in self.results) |
| 655 | |
| 656 | def completed_count(self): |
| 657 | """Task completion count. |
no outgoing calls
no test coverage detected