| Point-to-Point Channel |
Pattern Catalog | ![]() |
|
| Site Home Patterns Home Table of Contents |
An application is using Messaging to make remote procedure calls (RPC’s) or transfer documents.
How can the caller be sure that exactly one receiver will receive the document or perform the call?

Send the message on a Point-to-Point Channel, which ensures that only one receiver will receive a particular message.
A Point-to-Point Channel ensures that only one receiver consumes any given message. If the channel has multiple receivers, only one of them can successfully consume a particular message. If multiple receivers try to consume a single message, the channel ensures that only one of them succeeds, so the receivers do not have to coordinate with each other. The channel can still have multiple receivers to consume multiple messages concurrently, but only a single receiver consumes any one message.
...Related patterns: Command Message, Competing Consumers, Document Message, Message, Message Channel, Messaging, Publish-Subscribe Channel, Request-Reply
Find the full description of this pattern in:Enterprise Integration Patterns Gregor Hohpe and Bobby Woolf ISBN 0321200683 650 pages Addison-Wesley |
Parts of this page are available under
the Creative Commons Attribution license.
You can reuse the pattern icon, the pattern name, the problem and solution statements (in bold), and the sketch
under this license. Other portions of the text, such as text chapters or the full pattern text, are protected
by copyright.
|
| Home Patterns Table of Contents |
| © 2003 Bobby Woolf All rights reserved. |