Topic.UpdateStages.WithMessageBatching Interface

public static interface Topic.UpdateStages.WithMessageBatching

The stage of the topic definition allowing configure message batching behaviour.

Method Summary

Modifier and Type Method and Description
abstract Update withMessageBatching()

Specifies that service bus can batch multiple message when it write messages to or delete messages from it's internal store.

abstract Update withoutMessageBatching()

Specifies that batching of messages should be disabled when Service Bus write messages to or delete messages from it's internal store.

Method Details

withMessageBatching

public abstract 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

public abstract 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

Applies to