In this pattern, a Point-to-Point Channel ensures that only one receiver will be consuming any specific message generated by a Sender. If a channel has multiple receivers connected to it, then only one of them can successfully consume a specific message.
However, if there happen to be multiple receivers that try to consume an individual message, then the channel will ensure that only one of them will be successful. With this level of guarantee, none of the receivers have to coordinate their actions with each other.
The channel can still have multiple receivers to consume multiple messages concurrently, while the channel enforces the rule that only a single receiver consumes any one message.