Version v1.x

Example Tasks

Available in

.NET Node.js Python

Practical DurableStack job examples for common application workloads.

These examples show common task shapes you can adapt quickly.

Email notification job (typed payload)

Enqueue:

Recurring cleanup job

Third-party sync job with backoff

Guidance

  • Use typed jobs when payload shape is part of the contract.
  • Prefer non-overlapping recurring jobs for mutable resources.
  • Use retry backoff for external dependency instability.