mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-21 00:24:17 +00:00
599 B
599 B
layout, title, folder, permalink, categories, tags
| layout | title | folder | permalink | categories | tags |
|---|---|---|---|---|---|
| pattern | Publish Subscribe | publish-subscribe | /patterns/publish-subscribe/ | Integration | Java |
Intent: When applications communicate using a messaging system they do it by using logical addresses of the system, so called Publish Subscribe Channel. The publisher broadcasts a message to all registered Subscriber.
Applicability: Use the Publish Subscribe Channel pattern when
- two or more applications need to communicate using a messaging system for broadcasts.
