You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Andy Piper edited this page Dec 2, 2013
·
1 revision
Overlapping Topics
Scenario 1
(all commands are sent by the same client):
Subscribe to A/#
Subscribe to A/B
Publish message M to topic A/B
The client will receive the message once.
Scenario 2
(all commands are sent by the same client):
Publish message M1 to topic A/B with retain
Publish message M2 to topic A/C with retain
Publish message M3 to topic A/D with retain
Subscribe to A/#
The client will receive all three of the retained messages.
Scenario 3
Given the topic tree:
test
test/one
test/two/two
Subscribe to test/#
Unsubscribe from test/one
Unsubscribe from test/two
The client will still receive messages sent to test/one and test/two. You can only unsubscribe from a topic you have explicitly subscribed to; you cannot punch holes in previous subscription.