What are Durable Functions?
Durable Functions is an extension of Azure Functions that lets you write stateful functions in a serverless environment. It enables you to define workflows in code, orchestrate long‑running processes, and manage state, checkpoints, and retries automatically.
Key Concepts
- Orchestrator functions – define the control flow of your workflow.
- Activity functions – perform the actual work.
- Entity functions – represent durable, mutable state.
- Triggers & bindings – integrate with Azure services.
Sample Orchestration
Common Patterns
Next Steps
Ready to dive in? Start with our Getting Started guide or explore specific workflow patterns.