Uses of Class
com.azure.messaging.servicebus.administration.models.CreateRuleOptions
Packages that use CreateRuleOptions
Package
Description
The Azure Service Bus client library allows Java developers to interact with Azure Service Bus entities by
publishing to and/or subscribing from queues and topics/subscriptions.
The Azure Service Bus Administration client library allows for management of entities in their Service Bus
namespace.
Package containing the data models for ServiceBusManagementClient.
-
Uses of CreateRuleOptions in com.azure.messaging.servicebus
Methods in com.azure.messaging.servicebus with parameters of type CreateRuleOptionsModifier and TypeMethodDescriptionServiceBusRuleManagerAsyncClient.createRule
(String ruleName, CreateRuleOptions options) Creates a rule to the current subscription to filter the messages reaching from topic to the subscription.void
ServiceBusRuleManagerClient.createRule
(String ruleName, CreateRuleOptions options) Creates a rule to the current subscription to filter the messages reaching from topic to the subscription. -
Uses of CreateRuleOptions in com.azure.messaging.servicebus.administration
Methods in com.azure.messaging.servicebus.administration with parameters of type CreateRuleOptionsModifier and TypeMethodDescriptionServiceBusAdministrationAsyncClient.createRule
(String topicName, String subscriptionName, String ruleName, CreateRuleOptions ruleOptions) Creates a rule with theCreateRuleOptions
.ServiceBusAdministrationClient.createRule
(String topicName, String ruleName, String subscriptionName, CreateRuleOptions ruleOptions) Creates a rule with theCreateRuleOptions
.Mono
<com.azure.core.http.rest.Response<RuleProperties>> ServiceBusAdministrationAsyncClient.createRuleWithResponse
(String topicName, String subscriptionName, String ruleName, CreateRuleOptions ruleOptions) Creates a rule and returns the created rule in addition to the HTTP response.com.azure.core.http.rest.Response
<RuleProperties> ServiceBusAdministrationClient.createRuleWithResponse
(String topicName, String subscriptionName, String ruleName, CreateRuleOptions ruleOptions, com.azure.core.util.Context context) Creates a rule and returns the created rule in addition to the HTTP response.ServiceBusAdministrationAsyncClient.createSubscription
(String topicName, String subscriptionName, String ruleName, CreateSubscriptionOptions subscriptionOptions, CreateRuleOptions ruleOptions) Creates a subscription with a default rule usingCreateSubscriptionOptions
andCreateRuleOptions
.ServiceBusAdministrationClient.createSubscription
(String topicName, String subscriptionName, String ruleName, CreateSubscriptionOptions subscriptionOptions, CreateRuleOptions ruleOptions) Creates a subscription with default rule using theCreateSubscriptionOptions
andCreateRuleOptions
.Mono
<com.azure.core.http.rest.Response<SubscriptionProperties>> ServiceBusAdministrationAsyncClient.createSubscriptionWithResponse
(String topicName, String subscriptionName, String ruleName, CreateSubscriptionOptions subscriptionOptions, CreateRuleOptions ruleOptions) Creates a subscription with default rule and returns the created subscription in addition to the HTTP response.com.azure.core.http.rest.Response
<SubscriptionProperties> ServiceBusAdministrationClient.createSubscriptionWithResponse
(String topicName, String subscriptionName, String ruleName, CreateSubscriptionOptions subscriptionOptions, CreateRuleOptions ruleOptions, com.azure.core.util.Context context) Creates a subscription with default rule configured and returns the created subscription in addition to the HTTP response. -
Uses of CreateRuleOptions in com.azure.messaging.servicebus.administration.models
Methods in com.azure.messaging.servicebus.administration.models that return CreateRuleOptionsModifier and TypeMethodDescriptionCreateRuleOptions.setAction
(RuleAction action) Sets the action to perform if the message satisfies the filtering expression.CreateRuleOptions.setFilter
(RuleFilter filter) Sets the filter expression used to match messages.