What are asynchronous callbacks ?

Answer Posted / hrdiya

Page processing begins on a thread-pool thread, but that
thread is returned to the thread pool once an asynchronous
I/O operation begins in response to a signal from ASP.NET.
When the operation completes, ASP.NET grabs another thread
from the thread pool and finishes processing the request.
Scalability increases because thread-pool threads are used
more efficiently. Threads that would otherwise be stuck
waiting for I/O to complete can now be used to service
other requests. The direct beneficiaries are requests that
don't perform lengthy I/O operations and can therefore get
in and out of the pipeline quickly. Long waits to get into
the pipeline have a disproportionately negative impact on
the performance of such requests.

Is This Answer Correct ?    11 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is webresource axd?

646


What is the use of response redirect in asp.net?

791


Explain the page lifecycle of an asp.net mvc? : asp.net mvc

581


What parameters can you pass in the url of the api? Can get and post use the same url?

736


Explain the benefits of viewstate?

772


What is Partial PostBack in ASP.NET?

777


What is session in http request?

774


Explain the server control events of asp.net ?

738


What is the difference between exe and dll?

777


What is the difference between the response.write() and response.output.write() methods?

737


What is session object? Describe in detail.

764


What is the purpose of master page?

699


What I need to create and run an asp.net application?

708


What is session id in web application?

755


What is OSI layer? Explain different layers.

793