Configuring durable functions in the Azure portal
In this recipe, you'll learn about configuring durable functions. In order to develop durable functions, you need to create the following three functions:
- Orchestrator client: An Azure function that can manage orchestrator instances. It works as a client that will initiate the orchestrator objects.
- Orchestrator function: The actual orchestrator function allows the development of stateful workflows via code. This function can asynchronously call other Azure functions (named activity functions) and can even save their return values in local variables.
- Activity functions: These are the functions that will be called by the orchestrator function. Activity functions are where we develop the logic as per the requirements.
- Let's get started.
Getting ready
Download and install Postman from https://www.getpostman.com/ if you haven't already installed it. We'll be using Postman to test the durable...