AZ-204 · Question #445
You are developing an Azure Durable Function to manage an online ordering process. The process must call an external API to gather product discount information. You need to implement the Azure…
The correct answer is A. Orchestrator D. Activity. Orchestrator function - describes a workflow that orchestrates other functions. Entity functions define operations for reading and updating small pieces of state, known as durable entities (Entity functions and related functionality are only available in Durable Functions 2.0…
Question
Options
- AOrchestrator
- BEntity
- CClient
- DActivity
How the community answered
(35 responses)- A83% (29)
- B11% (4)
- C6% (2)
Explanation
Orchestrator function - describes a workflow that orchestrates other functions. Entity functions define operations for reading and updating small pieces of state, known as durable entities (Entity functions and related functionality are only available in Durable Functions 2.0 and above.) They are currently supported in .NET, JavaScript, and Python, but not in PowerShell or Java. Activity function - called by the orchestrator function, performs work, and optionally returns a Client function - a regular Azure Function that starts an orchestrator function. This example uses an HTTP triggered function. https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-types-features-
Topics
Community Discussion
No community discussion yet for this question.