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