I was wondering what is the difference between a JMS Queue and JMS Topic.
ActiveMQ page says
Topics In JMS a Topic implements <
In JMS a Topic implements <
It is simple as that:
Queues = Insert > Withdraw (send to single subscriber) 1:1 Topics = Insert > Broadcast (send to all subscribers) 1:n
Queues = Insert > Withdraw (send to single subscriber) 1:1
Topics = Insert > Broadcast (send to all subscribers) 1:n