I have a use case that to hook up the topic to many queues. We have some events in our system that we want to allow different users to subscribe to. We are treating that the ‘events’ as ‘topics’ and the user subscriptions as ‘queue’. Each user will have a personal queue and it depending on their subscription; we will route it to their queue. Can you share some pointers as to how this can be set up?
Share
Take a look on Diverts on the hornetq documentation.
Or you could just use simple Topics. Also look at topic hierarchy on the hornetq documentation.
Or maybe you could achieve what you need with simple topic subscriptions and filters? (what will be probably more portable).