ℹ️ These docs are for the free version of Galileo. Documentation for current customers can be found here.
class ThreadPoolTaskHandler()
def submit_task(task_id: str, async_fn: Union[Callable[[], Awaitable[Any]], Coroutine], dependent_on_prev: bool = False)
task_id
async_fn
dependent_on_prev
def get_children(parent_task_id: str) -> list[dict]
def increment_retry(task_id: str)
def get_status(task_id: str) -> TaskStatus
def get_result(task_id: str)
def get_retry_count(task_id: str) -> int
def all_tasks_completed() -> bool
Was this page helpful?