mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-18 17:26:44 +00:00
26 lines
614 B
Markdown
26 lines
614 B
Markdown
---
|
|
layout: pattern
|
|
title: EIP Publish Subscribe
|
|
folder: eip-publish-subscribe
|
|
permalink: /patterns/eip-publish-subscribe/
|
|
categories: Integration
|
|
tags:
|
|
- Java
|
|
- EIP
|
|
- Apache Camel™
|
|
---
|
|
|
|
## Intent
|
|
Broadcast messages from sender to all the interested receivers.
|
|
|
|

|
|
|
|
## Applicability
|
|
Use the Publish Subscribe Channel pattern when
|
|
|
|
* two or more applications need to communicate using a messaging system for broadcasts.
|
|
|
|
## Credits
|
|
|
|
* [J2EE Design Patterns](http://www.amazon.com/J2EE-Design-Patterns-William-Crawford/dp/0596004273/ref=sr_1_2)
|