Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Context and problem

    Avoid the sender to wait for a response and avoid the consumer to know the identity of the producer.

  2. Solution

    Pus/Sub Messaging Pattern

  3. Challenges

Image Added

Note

The channels in a publish-subscribe system are treated as unidirectional. If a specific subscriber needs to send acknowledgment or communicate status back to the publisher, consider using the Request/Reply Pattern. This pattern uses one channel to send a message to the subscriber, and a separate reply channel for communicating back to the publisher.