Activity Chaining in Durable Functions
Learn the fundamentals of using chained activities by the orchestrator.
We'll cover the following...
Durable functions can be used to execute processes where different steps depend on each other. For example, we might need an output from one activity to be used as an input in the next activity. The activities will run in a predefined sequence. This process is known as chaining.
We have an example of chained activities in the interactive playground below. We have a setup where the orchestrator accepts the name of a ...