From the course: Azure Functions for Developers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Implementing an orchestrator

Implementing an orchestrator - Azure Tutorial

From the course: Azure Functions for Developers

Start my 1-month free trial

Implementing an orchestrator

- [Instructor] In this video we'll see how to implement an orchestrator function. So here in the photos project, I'm going to right-click and select the New Azure Function option and let's name it PhotosOrchestrator. This time I'm going to use this Durable Functions Orchestration template, and before anything else I'm going to update the durable task NuGet package. At the time of this recording, the latest version is 2.3.0. So, let's update it and let's go back to the PhotosOrchestrator class, let's close that to have more space and let's get rid of the say hello method because we're not going to use it, and I'm going to move these HTTPS start method on top because I want it to be more readable. So the first thing that I want to do here in this method is to read the entire request body content as a string. So, let's create a new variable and we're going to await for the following content and let's execute this…

Contents