Skip to content

Commit 31825eb

Browse files
committed
Moving Service Bus updates to the table for the correct version
1 parent d957529 commit 31825eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ Functions 1.x apps automatically have a reference to the [Microsoft.Azure.WebJob
8383
"extensions": {
8484
"serviceBus": {
8585
"prefetchCount": 100,
86-
"transportType": "amqpWebSockets",
87-
"webProxy": "https://proxyserver:8080",
8886
"messageHandlerOptions": {
8987
"autoComplete": true,
9088
"maxConcurrentCalls": 32,
@@ -111,8 +109,6 @@ If you have `isSessionsEnabled` set to `true`, the `sessionHandlerOptions` is ho
111109
|Property |Default | Description |
112110
|---------|---------|---------|
113111
|prefetchCount|0|Gets or sets the number of messages that the message receiver can simultaneously request.|
114-
| transportType| amqpTcp | The protocol and transport that is used for communicating with Service Bus. Available options: `amqpTcp`, `amqpWebSockets`|
115-
| webProxy| n/a | The proxy to use for communicating with Service Bus over web sockets. A proxy cannot be used with the `amqpTcp` transport. |
116112
|messageHandlerOptions.maxAutoRenewDuration|00:05:00|The maximum duration within which the message lock will be renewed automatically.|
117113
|messageHandlerOptions.autoComplete|true|Whether the trigger should automatically call complete after processing, or if the function code will manually call complete.<br><br>Setting to `false` is only supported in C#.<br><br>If set to `true`, the trigger completes the message automatically if the function execution completes successfully, and abandons the message otherwise.<br><br>When set to `false`, you are responsible for calling [MessageReceiver](/dotnet/api/microsoft.azure.servicebus.core.messagereceiver) methods to complete, abandon, or deadletter the message. If an exception is thrown (and none of the `MessageReceiver` methods are called), then the lock remains. Once the lock expires, the message is re-queued with the `DeliveryCount` incremented and the lock is automatically renewed.<br><br>In non-C# functions, exceptions in the function results in the runtime calls `abandonAsync` in the background. If no exception occurs, then `completeAsync` is called in the background. |
118114
|messageHandlerOptions.maxConcurrentCalls|16|The maximum number of concurrent calls to the callback that the message pump should initiate per scaled instance. By default, the Functions runtime processes multiple messages concurrently.|
@@ -138,6 +134,8 @@ The example host.json file below contains only the settings for version 5.0.0 an
138134
"maxRetries": 3
139135
},
140136
"prefetchCount": 0,
137+
"transportType": "amqpWebSockets",
138+
"webProxy": "https://proxyserver:8080",
141139
"autoCompleteMessages": true,
142140
"maxAutoLockRenewalDuration": "00:05:00",
143141
"maxConcurrentCalls": 16,
@@ -155,6 +153,8 @@ When using service bus extension version 5.x and higher, the following global co
155153
|Property |Default | Description |
156154
|---------|---------|---------|
157155
|prefetchCount|0|Gets or sets the number of messages that the message receiver can simultaneously request.|
156+
| transportType| amqpTcp | The protocol and transport that is used for communicating with Service Bus. Available options: `amqpTcp`, `amqpWebSockets`|
157+
| webProxy| n/a | The proxy to use for communicating with Service Bus over web sockets. A proxy cannot be used with the `amqpTcp` transport. |
158158
|autoCompleteMessages|true|Determines whether or not to automatically complete messages after successful execution of the function and should be used in place of the `autoComplete` configuration setting.|
159159
|maxAutoLockRenewalDuration|00:05:00|The maximum duration within which the message lock will be renewed automatically. This setting only applies for functions that receive a single message at a time.|
160160
|maxConcurrentCalls|16|The maximum number of concurrent calls to the callback that the should be initiate per scaled instance. By default, the Functions runtime processes multiple messages concurrently. This setting only applies for functions that receive a single message at a time.|

0 commit comments

Comments
 (0)