Skip to content

Commit 9a96249

Browse files
authored
udpate by comments
1 parent a3065ff commit 9a96249

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/azure-functions/durable/durable-functions-http-features.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,8 @@ The "call HTTP" API can automatically implement the client side of the polling c
357357
# [C# (InProc)](#tab/csharp-inproc)
358358

359359
```csharp
360-
[FunctionName(nameof(CheckSiteAvailableWithPolling))]
361-
public static async Task CheckSiteAvailableWithPolling(
360+
[FunctionName(nameof(CheckSiteAvailabilityWithPolling))]
361+
public static async Task CheckSiteAvailabilityWithPolling(
362362
[OrchestrationTrigger] IDurableOrchestrationContext context)
363363
{
364364
Uri url = context.GetInput<Uri>();
@@ -372,8 +372,8 @@ public static async Task CheckSiteAvailableWithPolling(
372372
# [C# (Isolated)](#tab/csharp-isolated)
373373

374374
```csharp
375-
[Function(nameof(CheckSiteAvailableWithPolling))]
376-
public static async Task CheckSiteAvailableWithPolling(
375+
[Function(nameof(CheckSiteAvailabilityWithPolling))]
376+
public static async Task CheckSiteAvailabilityWithPolling(
377377
[OrchestrationTrigger] TaskOrchestrationContext context)
378378
{
379379
Uri url = context.GetInput<Uri>();
@@ -390,27 +390,27 @@ public static async Task CheckSiteAvailableWithPolling(
390390
```
391391
# [JavaScript](#tab/javascript)
392392

393-
This feature isn't available in JavaScript.
393+
This feature is currently not supported in JavaScript.
394394

395395
# [Python](#tab/python)
396396

397-
This feature isn't available in Python.
397+
This feature is currently not supported in Python.
398398

399399
# [PowerShell](#tab/powershell)
400400

401-
This feature isn't available in PowerShell.
401+
This feature is currently not supported in PowerShell.
402402

403403
# [Java](#tab/java)
404404

405-
This feature isn't available in Java.
405+
This feature is currently not supported in Java.
406406

407407
---
408408

409409
> [!NOTE]
410410
> 1. Orchestrator functions also natively support the server-side polling consumer pattern, as described in [Async operation tracking](#async-operation-tracking). This support means that orchestrations in one function app can easily coordinate the orchestrator functions in other function apps. This is similar to the [sub-orchestration](durable-functions-sub-orchestrations.md) concept, but with support for cross-app communication. This support is particularly useful for microservice-style app development.
411411
> 2. The built-in HTTP polling pattern is currently available only in the .NET host.
412-
> 3. The polling pattern is enabled by default in .NET in-process but disabled by default in .NET out-of-process. If you want to enable it in .NET out-of-process, refer to the sample code and set the asynchronousPatternEnabled argument to true.
413-
> 4. HTTP automatic polling pattern is supported at .NET out-of-process starting from version [v1.5.0](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.DurableTask) or later.
412+
> 3. The polling pattern is enabled by default in .NET in-process but disabled by default in .NET Isolated. If you want to enable it in .NET Isolated, refer to the sample code and set the asynchronousPatternEnabled argument to true.
413+
> 4. HTTP automatic polling pattern is supported in Durable Functions .NET Isolated starting from version [v1.5.0](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.DurableTask) or later.
414414
415415
### Managed identities
416416

0 commit comments

Comments
 (0)