Interface ServiceBusSubscription.UpdateStages.WithMessageBatching
-
- All Known Subinterfaces:
ServiceBusSubscription.Update
- Enclosing interface:
- ServiceBusSubscription.UpdateStages
public static interface ServiceBusSubscription.UpdateStages.WithMessageBatchingThe stage of the subscription definition allowing configure message batching behaviour.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceBusSubscription.UpdatewithMessageBatching()Specifies that service bus can batch multiple message when it write messages to or delete messages from it's internal store.ServiceBusSubscription.UpdatewithoutMessageBatching()Specifies that batching of messages should be disabled when service bus write messages to or delete messages from it's internal store.
-
-
-
Method Detail
-
withMessageBatching
ServiceBusSubscription.Update withMessageBatching()
Specifies that service bus can batch multiple message when it write messages to or delete messages from it's internal store. This increases the throughput.- Returns:
- the next stage of subscription update
-
withoutMessageBatching
ServiceBusSubscription.Update withoutMessageBatching()
Specifies that batching of messages should be disabled when service bus write messages to or delete messages from it's internal store.- Returns:
- the next stage of subscription update
-
-