|
14.
|
|
|
sensors/+/temperature/+
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:67(listitem)
|
|
15.
|
|
|
As another example, for a topic of "a/b/c/d", the following example subscriptions will match:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:69(para)
|
|
21.
|
|
|
The following subscriptions will not match:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:78(para)
|
|
25.
|
|
|
<option>#</option> can be used as a wildcard for all remaining levels of hierarchy. This means that it must be the final character in a subscription. With a topic of "a/b/c/d", the following example subscriptions will match:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:84(para)
|
|
26.
|
|
|
#
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:90(para)
|
|
27.
|
|
|
a/#
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:91(para)
|
|
28.
|
|
|
a/b/#
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:92(para)
|
|
29.
|
|
|
a/b/c/#
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:93(para)
|
|
30.
|
|
|
+/b/c/#
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:94(para)
|
|
32.
|
|
|
mqtt defines three levels of Quality of Service (QoS). The QoS defines how hard the broker/client will try to ensure that a message is received. Messages may be sent at any QoS level, and clients may attempt to subscribe to topics at any QoS level. This means that the client chooses the maximum QoS it will receive. For example, if a message is published at QoS 2 and a client is subscribed with QoS 0, the message will be delivered to that client with QoS 0. If a second client is also subscribed to the same topic, but with QoS 2, then it will receive the same message but with QoS 2. For a second example, if a client is subscribed with QoS 2 and a message is published on QoS 0, the client will receive it on QoS 0.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
mqtt.7.xml:100(para)
|