Design Patterns Question:

What are the advantages of asynchronous architectures?

Design Patterns Interview Question
Design Patterns Interview Question

Answer:

Asynchronous architectures decouple senders and receivers.
This brings about performance advantages for both the sender
and the receiver. The sender is able to even out his
communication traffic over the course of a day. This is
helpful in cases where sender and receiver communicate over
low-bandwidth lengths. The receiver can even out its
processing load by processing the sender's message as time
permits.


Previous QuestionNext Question
Explain three types of components comprise an application design?what is the difference between the Adapter Pattern and Proxy Patterns? its seems both are almost similar?