• Advantages of asynchronous communication

Document Actions
Replies: 3   Views: 5956
Up one level
You need to be a registered member to post to this forum. Register now.
Prev topic | Next topic

 • Advantages of asynchronous communication

Posted by havoyan at 2004-11-02 17:17

What are the advantages of asynchronous communications between componnents?

Manager
Posts: 0

 • Re: Advantages of asynchronous communication

Posted by timtlee at 2004-11-03 23:22
Asynchronous communication between componnents lends itself to greater modularization. In particular, a software system that uses asynchronous communication can be more easily distributed over a network than if synchronous communication were used.
Anonymous
Posts: n/a

 • Re: Advantages of asynchronous communication

Posted by luzgin at 2004-11-09 05:24
Asynchronous communication gives greater flexibility and provides loose coupling between components. When making an asynchronous call, a component is not blocked waiting for a method return and can continue doing work immediatly after the call. If return result is required the caller component can be called back by the callee once the request is processed.
Anonymous
Posts: n/a

 • Re: Advantages of asynchronous communication

Posted by havoyan at 2004-11-09 06:44
correct. important advantage is that when we need fast reaction we do not depend on components with slow responce.
Manager
Posts: 0