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
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: