MCPcopy
hub / github.com/celery/celery / ready

Method ready

celery/result.py:648–654  ·  view source on GitHub ↗

Did all of the tasks complete? (either by success of failure). Returns: bool: true if all of the tasks have been executed.

(self)

Source from the content-addressed store, hash-verified

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.

Callers 3

unlock_graphFunction · 0.45
iterdepsMethod · 0.45
waitingMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected