Conversation
adding information about isolated worker package
|
Learn Build status updates of commit f0b74e5: 💡 Validation status: suggestions
api/overview/azure/latest/functions.md
For more details, please refer to the build report. Note: Broken links written as relative paths are included in the above build report. For broken links written as absolute paths or external URLs, see the broken link report. Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them. For any questions, please:
|
| Install the extension [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask) directly from the Visual Studio [Package Manager console][PackageManager] or with the [.NET Core CLI][DotNetCLI]. | ||
|
|
||
| The Azure API reference documentation supports [version 2.x of the Durable Functions extension](/dotnet/api/overview/azure/functions/runtime). | ||
|
|
|
|
||
| ## Overview | ||
|
|
||
| [Azure Functions](/azure/azure-functions/functions-overview) is a solution for easily running small pieces of code, or _functions_, in Azure. Azure Functions supports a [serverless](https://azure.microsoft.com/solutions/serverless/) execution model. |
There was a problem hiding this comment.
Avoid the term "easily". It's subjective and would be best suited for marketing material.
| [Azure Functions](/azure/azure-functions/functions-overview) is a solution for easily running small pieces of code, or _functions_, in Azure. Azure Functions supports a [serverless](https://azure.microsoft.com/solutions/serverless/) execution model. | |
| [Azure Functions](/azure/azure-functions/functions-overview) is a solution for running small pieces of code, or _functions_, in Azure. Azure Functions supports a [serverless](https://azure.microsoft.com/solutions/serverless/) execution model. | |
|
|
||
| *Durable Functions* is an extension of [Azure Functions](/azure/azure-functions/functions-overview) that lets you write stateful functions in a serverless compute environment. The extension lets you define stateful workflows by writing [*orchestrator functions*](/azure/azure-functions/durable/durable-functions-orchestrations) and stateful entities by writing [*entity functions*](/azure/azure-functions/durable/durable-functions-entities) using the Azure Functions programming model. Behind the scenes, the extension manages state, checkpoints, and restarts for you, allowing you to focus on your business logic. | ||
|
|
||
| Install the extension [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask) directly from the Visual Studio [Package Manager console][PackageManager] or with the [.NET Core CLI][DotNetCLI]. |
There was a problem hiding this comment.
| Install the extension [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask) directly from the Visual Studio [Package Manager console][PackageManager] or with the [.NET Core CLI][DotNetCLI]. | |
| Install the extension [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask) directly from the Visual Studio [Package Manager Console][PackageManager] or with the [.NET CLI][DotNetCLI]. | |
| Install-Package Microsoft.Azure.WebJobs.Extensions.DurableTask | ||
| ``` | ||
|
|
||
| ### .NET Core CLI |
There was a problem hiding this comment.
| ### .NET Core CLI | |
| ### .NET CLI | |
| Install-Package Microsoft.Azure.Functions.Worker.Extensions.DurableTask | ||
| ``` | ||
|
|
||
| ### .NET Core CLI |
There was a problem hiding this comment.
| ### .NET Core CLI | |
| ### .NET CLI | |
| dotnet add package Microsoft.Azure.Functions.Worker.Extensions.DurableTask | ||
| ``` | ||
|
|
||
| ### Getting started |
There was a problem hiding this comment.
Avoid gerunds in section headings, when possible
| ### Getting started | |
| ### Get started | |
| ``` | ||
| ## Isolated worker process | ||
|
|
||
| ### Visual Studio package manager |
There was a problem hiding this comment.
| ### Visual Studio package manager | |
| ### Visual Studio | |
|
|
||
| ## In-process | ||
|
|
||
| ### Visual Studio package manager |
There was a problem hiding this comment.
| ### Visual Studio package manager | |
| ### Visual Studio | |
|
|
||
| *Durable Functions* is an extension of [Azure Functions](/azure/azure-functions/functions-overview) that lets you write stateful functions in a serverless compute environment. The extension lets you define stateful workflows by writing [*orchestrator functions*](/azure/azure-functions/durable/durable-functions-orchestrations) and stateful entities by writing [*entity functions*](/azure/azure-functions/durable/durable-functions-entities) using the Azure Functions programming model. Behind the scenes, the extension manages state, checkpoints, and restarts for you, allowing you to focus on your business logic. | ||
|
|
||
| Install the extension [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask) directly from the Visual Studio [Package Manager console][PackageManager] or with the [.NET Core CLI][DotNetCLI]. |
There was a problem hiding this comment.
[NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask)
This package applies to only the in-process model. Will this confuse readers that we are advising them to install this here, but for isolated they actually do not want to install it? Maybe instead this section can direct the reader to the following sections which give the correct package for in-process vs isolated?
adding information about durable isolated worker package