c# - How to remove queue in Azure Service Bus automatically if no one subscriber do not retrieve messages during month? -
i'm using azure service bus transport masstransit. need remove queue automatically if no 1 subscriber not retrieve messages during month. know autodeleteonidle property, how can set time deleting queue if no 1 subscribers retrieve messages?
may it's possible using azure portal(i need set namespace) or when create new queue code?
autodeleteonidle
remove entity if there's no messages sent/received, not if there's not subscribers.
if worry queue accumulating messages, perhaps switching topic/subscription better (no subscribers, no messages stored).
as specifying value, portal, i'd first try through masstransit api if possible.
Comments
Post a Comment