-
Notifications
You must be signed in to change notification settings - Fork 3
Topics
uklance edited this page Jun 28, 2012
·
22 revisions
Topics allow multiple push targets to subscribe to the same messages but perform different actions and apply different templates when messages arrive. Topics must start with a '/' character
- ** can be used at the end of a topic to match all subtopics
- * can be used at the end of a topic to match all subtopics in the next level
eg:
- /chat/** will match /chat/cars and /chat/cars/bmw
- /chat/* will match /chat/cars but WILL NOT MATCH /chat/cars/bmw
- /** will match all topics