A message topic works like a JMS topic in that it it publishes messages to subscribers either synchronously (via receive()) or asynchronously (via onMessage() callback).
A topic provides read-only access to messages as there can be multiple subscribers and synchronising edits would be challenging.
A topic can be configured using a filter to define a subset of messages to publish.
A message topic works like a JMS topic in that it it publishes messages to subscribers either synchronously (via receive()) or asynchronously (via onMessage() callback).
A topic provides read-only access to messages as there can be multiple subscribers and synchronising edits would be challenging.
A topic can be configured using a filter to define a subset of messages to publish.