Mid From PDF Azure Microsoft Azure

What are durable functions?

  • Durable Functions allow stateful workflows in serverless apps.
  • Enable orchestration, chaining, and long-running tasks without managing state

manually.

Example:

[FunctionName("OrchestratorFunction")]

public static async Task RunOrchestrator(

[OrchestrationTrigger] IDurableOrchestrationContext context)

{

wait context.CallActivityAsync("HelloActivity", "Tokyo");

wait context.CallActivityAsync("HelloActivity", "Seattle");

}

More from Microsoft Azure Tutorial

All questions for this course
Toolliyo Assistant
Ask about tutorials, ebooks, training, pricing, mentor services, and support. I use public site content only—not admin or internal tools.

care@toolliyo.com

Need callback? Share your details