Topic.Update |
Topic.UpdateStages.WithDefaultMessageTTL.withDefaultMessageTTL(Duration ttl) |
Specifies the duration after which the message expires.
|
Topic.Update |
Topic.UpdateStages.WithDeleteOnIdle.withDeleteOnIdleDurationInMinutes(int durationInMinutes) |
The idle interval after which the topic is automatically deleted.
|
Topic.Update |
Topic.UpdateStages.WithDuplicateMessageDetection.withDuplicateMessageDetectionHistoryDuration(Duration duration) |
Specifies the duration of the duplicate message detection history.
|
Topic.Update |
Topic.UpdateStages.WithExpressMessage.withExpressMessage() |
Specifies that messages in this topic are express hence they can be cached in memory
for some time before storing it in messaging store.
|
Topic.Update |
Topic.UpdateStages.WithMessageBatching.withMessageBatching() |
Specifies that service bus can batch multiple message when it write messages to or delete
messages from it's internal store.
|
Topic.Update |
Topic.UpdateStages.WithAuthorizationRule.withNewListenRule(String name) |
Creates a listen authorization rule for the topic.
|
Topic.Update |
Topic.UpdateStages.WithAuthorizationRule.withNewManageRule(String name) |
Creates a manage authorization rule for the topic.
|
Topic.Update |
Topic.UpdateStages.WithAuthorizationRule.withNewSendRule(String name) |
Creates a send authorization rule for the topic.
|
Topic.Update |
Topic.UpdateStages.WithSubscription.withNewSubscription(String name) |
Creates a subscription entity for the Service Bus topic.
|
Topic.Update |
Topic.UpdateStages.WithAuthorizationRule.withoutAuthorizationRule(String name) |
Removes an authorization rule for the topic.
|
Topic.Update |
Topic.UpdateStages.WithDuplicateMessageDetection.withoutDuplicateMessageDetection() |
Specifies that duplicate message detection needs to be disabled.
|
Topic.Update |
Topic.UpdateStages.WithExpressMessage.withoutExpressMessage() |
Specifies that messages in this topic are not express hence they should be cached in memory.
|
Topic.Update |
Topic.UpdateStages.WithMessageBatching.withoutMessageBatching() |
Specifies that batching of messages should be disabled when Service Bus write messages to
or delete messages from it's internal store.
|
Topic.Update |
Topic.UpdateStages.WithSubscription.withoutSubscription(String name) |
Removes a subscription entity associated with the Service Bus topic.
|
Topic.Update |
Topic.UpdateStages.WithSize.withSizeInMB(long sizeInMB) |
Specifies the maximum size of memory allocated for the topic.
|