Re: How MQTT consumer consume virtual topic which is queue in ActiveMQ?

2018-11-09 Thread Huan
I need 'get queue semantics (competing consumption across multiple consumers) out of this subscription'. Because I have multiple MQTT consumer clients which work in loadbalance, one of the client consume the message is enough. That is why need to use virtual topic concept. But I do not know how

Re: How MQTT consumer consume virtual topic which is queue in ActiveMQ?

2018-11-09 Thread Arthur Naseef
Are you looking to get queue semantics (competing consumption across multiple consumers) out of this subscription, or topic semantics (every consumer gets every message)? If the later, then you may be able to directly subscribe to the virtual topic itself, as a regular topic - because it still wor

How MQTT consumer consume virtual topic which is queue in ActiveMQ?

2018-11-09 Thread Huan
ActiveMQ virtual topic is actually put the message produced by publisher in a queue, the message will be distributed to multiple consumers evenly who connect to the queue. my consumer is using MQTT, but there is no queue concept in MQTT, but only subscribe/publish concept, then how can MQTT client