JMS Topic vs Queues

前端 未结 9 2094
广开言路
广开言路 2020-12-04 04:48

I was wondering what is the difference between a JMS Queue and JMS Topic.

ActiveMQ page says

Topics

In JMS a Topic implements <

9条回答
  •  抹茶落季
    2020-12-04 05:28

    Queue is JMS managed object used for holding messages waiting for subscribers to consume. When all subscribers consumed the message , message will be removed from queue.

    Topic is that all subscribers to a topic receive the same message when the message is published.

提交回复
热议问题