For instance, Producer A delivers a message on a queue/channel to Consumer A. Let's say it's a sports score.
How can I get multiple clients (desktops, mobile devices, etc) to listen in or connect to consumer A? What would be the best option for doing this?
I'm asking the question agnostic to the underlying message broker.
you can use pub/sub JMS, if you are using the web/servlet container.
or now a days you can see the web-sockets, this can provide you full-duplex communication.. search for web-sockets on internet..