Return true if all tasks successful. Returns: bool: true if all of the tasks finished successfully (i.e. didn't raise an exception).
(self)
| 614 | self.results[:] = [] # don't create new list. |
| 615 | |
| 616 | def successful(self): |
| 617 | """Return true if all tasks successful. |
| 618 | |
| 619 | Returns: |
| 620 | bool: true if all of the tasks finished |
| 621 | successfully (i.e. didn't raise an exception). |
| 622 | """ |
| 623 | return all(result.successful() for result in self.results) |
| 624 | |
| 625 | def failed(self): |
| 626 | """Return true if any of the tasks failed. |
no outgoing calls