Let's suppose I have several subscribers consuming from a topic. After a message has been delivered to all the subscribers I'd like to trigger a job that would use this message in input.
So the easy way to do that would be to move messages that have been succesfully delivered to all the sucscribers to a queue from which my job would consume messages. Is it part of JMS?
Is there any message broker able to do that directly?
If not is there a simple solution to solve this problem?