Jump to content

Asynchronous method dispatch

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by RHaworth (talk | contribs) at 16:18, 21 August 2010 (Reverted edits by Sumeet.chhetri (talk) to last version by YUL89YYZ). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Asynchronous method dispatch (AMD) is a data communication method used when there is a need for the server side to handle a large number of long lasting client requests. Using synchronous method dispatch (SMD), this scenario may turn the server into an unvavailable busy state resulting in a connection failure response cased by a network connection request timeout.

Mechanism

The servicing of a client request is immediately dispatched to an available thread from a pool of threads and the client is put in a blocking state. Upon the completion of the task, the server is notified by a callback. The server unblocks the client and transmits the response back to the client. In case of thread starvation, clients are blocked waiting for threads to become available.


References