Wildcards for queue names
When specifing a queueName for a ServiceBusTrigger in C#, it would be great to provide wildcards in the queueName, this way a single trigger can be used to handle queues from different and specific providers.
For example, for queues "taskxproviderA","taskxproviderB" and "taskxproviderC", the queueName in the trigger would be "taskxprovider*".
The trigger should also read messages evenly to prevent throttling.
This way I can achieve two goals:
1) Stop processing events for one provider (Setting the queue status
to "receive only") while not loosing those messages if I need to process them later.
2) Consume messages from different providers without letting one provider throttle the others when a huge amount of messages are sent from that one.
Thanks!