Skip to content
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

Wildcard Topics

  • ** 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
Clone this wiki locally