Files
hatchet/sdks/python/docs/runnables.md
T
Matt Kaye 63004ec9ab Feat: Add workflow delete API to workflows client (#1970)
* feat: add workflow delete api to workflows client

* feat: add delete methods to workflows + runnables

* chore: docs gen
2025-07-09 16:20:21 -04:00

1.5 KiB

Runnables

Runnables in the Hatchet SDK are things that can be run, namely tasks and workflows. The two main types of runnables you'll encounter are:

  • Workflow, which lets you define tasks and call all of the run, schedule, etc. methods
  • Standalone, which is a single task that's returned by hatchet.task and can be run, scheduled, etc.

Workflow

::: runnables.workflow.Workflow options: inherited_members: true members: - task - durable_task - on_failure_task - on_success_task - run - aio_run - run_no_wait - aio_run_no_wait - run_many - aio_run_many - run_many_no_wait - aio_run_many_no_wait - schedule - aio_schedule - create_cron - aio_create_cron - create_bulk_run_item - name - tasks - id - list_runs - aio_list_runs - create_filter - aio_create_filter

Standalone

::: runnables.workflow.Standalone options: inherited_members: true members: - run - aio_run - run_no_wait - aio_run_no_wait - run_many - aio_run_many - run_many_no_wait - aio_run_many_no_wait - schedule - aio_schedule - create_cron - aio_create_cron - create_bulk_run_item - list_runs - aio_list_runs - create_filter - aio_create_filter - delete - aio_delete