Makky
Makky

Reputation: 17471

Allow multiple consumer for the same queue

Let's say I have a queue FILE_DATA. The main process will read from it and does whatever it has to do, but at the same time I want to have another listener to the same queue for auditing purposes.

Does ActiveMQ 5.x support such things?

I am using SpringBoot.

Upvotes: 0

Views: 263

Answers (1)

Tim Bish
Tim Bish

Reputation: 18376

Sounds like you want something along the lines of a Mirrored Queue to be able to subscribe a consumer to and see what data is passing through the Queue. ActiveMQ supports many such features so a look through the documentation would be a good idea.

Upvotes: 3

Related Questions