Interface Queue.UpdateStages.WithMessageBatching
-
- All Known Subinterfaces:
Queue.Update
- Enclosing interface:
- Queue.UpdateStages
public static interface Queue.UpdateStages.WithMessageBatchingThe stage of the queue definition allowing configure message batching behaviour.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Queue.UpdatewithMessageBatching()Specifies that Service Bus can batch multiple message when it write messages to or delete messages from it's internal store.Queue.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
Queue.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 queue update
-
withoutMessageBatching
Queue.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 queue update
-
-