Package | Description |
---|---|
com.microsoft.azure.management.servicebus |
This package contains the classes for ServiceBusManagementClient.
|
Modifier and Type | Method and Description |
---|---|
Topic.Update |
Topic.UpdateStages.WithDefaultMessageTTL.withDefaultMessageTTL(org.joda.time.Period 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(org.joda.time.Period 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.
|
Copyright © 2019. All rights reserved.