Skip to content

Commit 2253c22

Browse files
committed
Add deprecation notice
1 parent 9a88656 commit 2253c22

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

articles/azure-functions/durable/durable-functions-overview.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Durable Functions Overview - Azure
33
description: Learn how to use the Durable Functions extension for Azure Functions to write stateful functions in a serverless compute environment.
44
author: cgillum
55
ms.topic: overview
6-
ms.date: 03/07/2025
6+
ms.date: 03/10/2025
77
ms.author: cgillum
88
ms.custom: devdivchpfy22, devx-track-extended-java, devx-track-js, devx-track-python
99
ms.reviewer: azfuncdf
@@ -63,6 +63,9 @@ You can use Durable Functions to implement the function chaining pattern concise
6363

6464
#### [In-process](#tab/in-process)
6565

66+
> [!IMPORTANT]
67+
> [Support ends for the in-process model on November 10, 2026](https://aka.ms/azure-functions-retirements/in-process-model). We highly recommend that you [migrate your apps to the isolated worker model](../migrate-dotnet-to-isolated-model.md).
68+
6669
In this example, the values `F1`, `F2`, `F3`, and `F4` are the names of other functions in the same function app. You can implement control flow by using normal imperative coding constructs. Code executes from the top down. The code can involve existing language control flow semantics, like conditionals and loops. You can include error handling logic in `try`/`catch`/`finally` blocks.
6770

6871
```csharp

0 commit comments

Comments
 (0)