When you send a message to a topic, if there is no subscription with a matching filter, the message gets lost.
How can I avoid this without creating a subscription that basically negates all the existing filters?
I don't want to lose messages, and if one comes without a subscriber, I want someone to look at it to see why that happened. I don't want this logic in the sender because the sender shouldn't be aware of subscribers.
I would like to avoid having to constantly update this "else subscriber" (ex, adding, deleting subscription).
Any ideas?