Uses of Class
com.microsoft.azure.servicebus.rules.RuleDescription
-
Packages that use RuleDescription Package Description com.microsoft.azure.servicebus com.microsoft.azure.servicebus.management com.microsoft.azure.servicebus.primitives -
-
Uses of RuleDescription in com.microsoft.azure.servicebus
Methods in com.microsoft.azure.servicebus that return types with arguments of type RuleDescription Modifier and Type Method Description Collection<RuleDescription>
ISubscriptionClient. getRules()
Get all rules associated with the subscription.Collection<RuleDescription>
SubscriptionClient. getRules()
CompletableFuture<Collection<RuleDescription>>
ISubscriptionClient. getRulesAsync()
Get all rules associated with the subscription.CompletableFuture<Collection<RuleDescription>>
SubscriptionClient. getRulesAsync()
Methods in com.microsoft.azure.servicebus with parameters of type RuleDescription Modifier and Type Method Description void
ISubscriptionClient. addRule(RuleDescription ruleDescription)
Adds a rule to the current subscription to filter the messages reaching from topic to the subscription.void
SubscriptionClient. addRule(RuleDescription ruleDescription)
CompletableFuture<Void>
ISubscriptionClient. addRuleAsync(RuleDescription ruleDescription)
Asynchronously adds a rule to the current subscription to filter the messages reaching from topic to the subscription.CompletableFuture<Void>
SubscriptionClient. addRuleAsync(RuleDescription ruleDescription)
-
Uses of RuleDescription in com.microsoft.azure.servicebus.management
Methods in com.microsoft.azure.servicebus.management that return RuleDescription Modifier and Type Method Description RuleDescription
ManagementClient. createRule(String topicName, String subscriptionName, RuleDescription ruleDescription)
Creates a new rule for a given topic - subscription.RuleDescription
ManagementClient. getRule(String topicPath, String subscriptionName, String ruleName)
Retrieves a rule for a given topic and subscription from the service namespaceRuleDescription
ManagementClient. updateRule(String topicName, String subscriptionName, RuleDescription ruleDescription)
Updates an existing rule.Methods in com.microsoft.azure.servicebus.management that return types with arguments of type RuleDescription Modifier and Type Method Description CompletableFuture<RuleDescription>
ManagementClientAsync. createRuleAsync(String topicName, String subscriptionName, RuleDescription ruleDescription)
Creates a new rule for a given topic - subscription.CompletableFuture<RuleDescription>
ManagementClientAsync. getRuleAsync(String topicPath, String subscriptionName, String ruleName)
Retrieves a rule for a given topic and subscription from the service namespaceList<RuleDescription>
ManagementClient. getRules(String topicName, String subscriptionName)
Retrieves the list of rules for a given topic-subscription in the namespace.List<RuleDescription>
ManagementClient. getRules(String topicName, String subscriptionName, int count, int skip)
Retrieves the list of rules for a given topic-subscription in the namespace.CompletableFuture<List<RuleDescription>>
ManagementClientAsync. getRulesAsync(String topicName, String subscriptionName)
Retrieves the list of rules for a given topic-subscription in the namespace.CompletableFuture<List<RuleDescription>>
ManagementClientAsync. getRulesAsync(String topicName, String subscriptionName, int count, int skip)
Retrieves the list of rules for a given topic-subscription in the namespace.CompletableFuture<RuleDescription>
ManagementClientAsync. updateRuleAsync(String topicName, String subscriptionName, RuleDescription ruleDescription)
Updates an existing rule.Methods in com.microsoft.azure.servicebus.management with parameters of type RuleDescription Modifier and Type Method Description RuleDescription
ManagementClient. createRule(String topicName, String subscriptionName, RuleDescription ruleDescription)
Creates a new rule for a given topic - subscription.CompletableFuture<RuleDescription>
ManagementClientAsync. createRuleAsync(String topicName, String subscriptionName, RuleDescription ruleDescription)
Creates a new rule for a given topic - subscription.SubscriptionDescription
ManagementClient. createSubscription(SubscriptionDescription subscriptionDescription, RuleDescription defaultRule)
Creates a new subscription in the service namespace with the provided default rule.CompletableFuture<SubscriptionDescription>
ManagementClientAsync. createSubscriptionAsync(SubscriptionDescription subscriptionDescription, RuleDescription defaultRule)
Creates a new subscription in the service namespace with the provided default rule.RuleDescription
ManagementClient. updateRule(String topicName, String subscriptionName, RuleDescription ruleDescription)
Updates an existing rule.CompletableFuture<RuleDescription>
ManagementClientAsync. updateRuleAsync(String topicName, String subscriptionName, RuleDescription ruleDescription)
Updates an existing rule. -
Uses of RuleDescription in com.microsoft.azure.servicebus.primitives
Methods in com.microsoft.azure.servicebus.primitives that return types with arguments of type RuleDescription Modifier and Type Method Description CompletableFuture<Collection<RuleDescription>>
MiscRequestResponseOperationHandler. getRulesAsync(int skip, int top)
Methods in com.microsoft.azure.servicebus.primitives with parameters of type RuleDescription Modifier and Type Method Description CompletableFuture<Void>
MiscRequestResponseOperationHandler. addRuleAsync(RuleDescription ruleDescription)
static Map<String,Object>
RequestResponseUtils. encodeRuleDescriptionToMap(RuleDescription ruleDescription)
-