3303-flashcards/hATaBiZQ - 3303/9uaX1o4K - What is the primary benefit of the Synchronous Message without Reply pattern.md
gwg313 e83b60af4f
first commit
update readme

reformat
2026-04-20 23:10:20 -04:00

16 lines
No EOL
500 B
Markdown

What is the primary benefit of the **Synchronous Message without Reply** pattern?
---
⏱️ It **throttles the producer**: the producer blocks until the consumer receives the message, preventing the producer from overwhelming a slow consumer.
---
## What is the main advantage and disadvantage of **Asynchronous Communication**?
⚖️
- **(+) More Parallelism**: The sender doesn't wait and keeps working.
- **(-) Buffer Loss**: Data can be lost if the sender is faster than the receiver.