MCPcopy Create free account
hub / github.com/algorithmicsuperintelligence/openevolve / wait_all

Method wait_all

openevolve/utils/async_utils.py:216–219  ·  view source on GitHub ↗

Wait for all tasks in the pool to complete

(self)

Source from the content-addressed store, hash-verified

214 return task
215
216 async def wait_all(self) -> None:
217 """Wait for all tasks in the pool to complete"""
218 if self.tasks:
219 await asyncio.gather(*self.tasks)
220
221 async def cancel_all(self) -> None:
222 """Cancel all tasks in the pool"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected