I wonder if the message sent order is preserved. That is, when a publisher sends a sequence of messages, is each subscriber guaranteed to receive the same sequence as the publisher had sent it? For both clean and persistent sessions?
相关问题
- Why use MQTT Node.JS library?
- AWS store MQTT message to DynamoDB
- JavaScript client for MQTT not using WebSockets
- Paho MQTT Python Client: No exceptions thrown, jus
- mqtt on Laravel with PHP
相关文章
- Connecting Unity3d Android application to ActiveMQ
- Integrating MQTT with GCP using IOT adapter and go
- How can i connect a Java mqtt client with username
- How to build a system to handle MQTT broker and Dj
- How to send a jms message to activeMQ and decode i
- golang mqtt publish and subscribe
- MQTT over websocket in python
- MQTT-Client-Framework stay running at background
A summary of the message ordering capabilities in MQTT 3.1.1 can be found in the specification itself here.
In summary:
QoS 1 ordering can be guaranteed if the client/broker only allow a single message inflight at any time.