Skip to content

Commit 8fd5904

Browse files
updating service bus sdk type content
1 parent 718d0a4 commit 8fd5904

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Each trigger and binding extension also has its own minimum version requirement,
246246

247247
<sup>1</sup> For output scenarios in which you would use an SDK type, you should create and work with SDK clients directly instead of using an output binding.
248248

249-
<sup>2</sup> The preview for the Service Bus trigger does not yet support message settlement scenarios.
249+
<sup>2</sup> The Service Bus trigger does not yet support message settlement scenarios for the isolated model.
250250

251251
<sup>3</sup> The Cosmos DB trigger uses the [Azure Cosmos DB change feed](../cosmos-db/change-feed.md) and exposes change feed items as JSON-serializable types. The absence of SDK types is by-design for this scenario.
252252

articles/azure-functions/functions-bindings-service-bus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Functions 1.x exposed types from the deprecated [Microsoft.ServiceBus.Messaging]
164164

165165
# [Extension 5.x+](#tab/extensionv5/isolated-process)
166166

167-
The isolated worker process supports parameter types according to the tables below. Support for binding to types from [Azure.Messaging.ServiceBus] is in preview.
167+
The isolated worker process supports parameter types according to the tables below. Support for binding to types from [Azure.Messaging.ServiceBus] is in preview. Current support does not yet include message settlement scenarios for triggers.
168168

169169
**Service Bus trigger**
170170

includes/functions-bindings-service-bus-trigger-dotnet-isolated-types.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,9 @@ When you want the function to process a batch of messages, the Service Bus trigg
2121
| --- | --- |
2222
| `T[]` where `T` is one of the single message types | An array of events from the batch. Each entry represents one event. |
2323

24-
The isolated process model does not yet support message settlement scenarios for Service Bus triggers.
25-
2624
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.ServiceBus 5.10.0-preview2 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.ServiceBus/5.10.0-preview2) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types). [Version 5.12.0-preview1 and later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.ServiceBus/5.12.0-preview1) requires moving the common dependencies forward to their GA versions. Specifically, you should use [Microsoft.Azure.Functions.Worker 1.18.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker/1.18.0) and [Microsoft.Azure.Functions.Worker.Sdk 1.12.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk/1.12.0).
2725

28-
[Azure.Messaging.ServiceBus]: /dotnet/api/azure.messaging.servicebus
26+
> [!NOTE]
27+
> The isolated process model does not yet support message settlement scenarios for Service Bus triggers.
28+
2929
[ServiceBusReceivedMessage]: /dotnet/api/azure.messaging.servicebus.servicebusreceivedmessage
30-
[ServiceBusMessage]: /dotnet/api/azure.messaging.servicebus.servicebusmessage
31-
[ServiceBusClient]: /dotnet/api/azure.messaging.servicebus.servicebusclient
32-
[ServiceBusSender]: /dotnet/api/azure.messaging.servicebus.servicebussender

0 commit comments

Comments
 (0)