Change Azure Service Bus Signature Filter

We plan to use azure service bus queue along with the theme / subscription.

We have several signatures for this issue with different filter conditions.

My question is, can we change the subscription filter dynamically after creating the subscription? How can I change the filter condition for a subscription after creating it? I can not find any methods that allow this? The only option I see is to delete the subscription and recreate it. Any idea how to change the filter without deleting the subscription?

+6
source share
2 answers

You can use AddRule and RemoveRule in a SubscriptionClient to change filters in a subscription.

Resources

+15
source

I cannot be sure that it works, but if anything allows you to edit the filter, it will be a Service Bus researcher from Paolo http://code.msdn.microsoft.com/windowsazure/Service-Bus-Explorer-f2abca5a

More on this blog: http://windowsazurecat.com/2011/07/exploring-topics-and-queues-by-building-a-service-bus-explorer-toolpart-1/

Can you create a new one and delete the old one, is pub / sub after all?

NTN

+2
source

Source: https://habr.com/ru/post/913696/


All Articles