* feat: add workflow delete api to workflows client * feat: add delete methods to workflows + runnables * chore: docs gen
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. methodsStandalone, which is a single task that's returned byhatchet.taskand 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