Usage¶
This section contains focused guides for runtime configuration and production queue behavior.
Choose a Topic¶
Configure the plugin, service, workers, dependency keys, and runtime settings.
Register tasks, enqueue work, set retries, deduplicate records, and use task context helpers.
Run recurring interval and cron tasks with startup synchronization.
Run local workers, process batches, send heartbeats, and reconcile external execution.
Publish lifecycle, progress, log, and custom task events to application realtime infrastructure.
Select queue and execution backends while keeping optional drivers optional.
Inject services into task callables through an external DI container
with the optional task_dependency_resolver hook.
Run worker fleets, inspect queue status, and check scheduler health
via the litestar queues subcommand group.
Recommended Path¶
Start with Quickstart to wire the plugin and enqueue a task.
Configure deployment defaults in Configuration.
Add task-level behavior with Tasks and recurring work with Schedules.
Choose queue persistence and execution integrations in Backends.
Add progress streaming or external subscribers with Events.