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
How dataadapter.fill works?
What is masterpage?
What is the equivalent of date() and time() in asp.net?
What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state?
How asynchronous call can be implemented using delegates?
Is asp net front end or backend?
What is ViewState? What does the "EnableViewState" property do? Why would I want it on or off?
What is difference between session and viewstate?
What are validator? How do you disable them?
How is session id generated?
What is web api vs wcf?
How you can access the values from the Repeater control in ASP.NET?
What is the use of session state and application state and difference between them?
What is dynamic web page with example?
How do I publish my asp.net application to my isp's web server?