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
What is webresource axd?
What is the use of response redirect in asp.net?
Explain the page lifecycle of an asp.net mvc? : asp.net mvc
What parameters can you pass in the url of the api? Can get and post use the same url?
Explain the benefits of viewstate?
What is Partial PostBack in ASP.NET?
What is session in http request?
Explain the server control events of asp.net ?
What is the difference between exe and dll?
What is the difference between the response.write() and response.output.write() methods?
What is session object? Describe in detail.
What is the purpose of master page?
What I need to create and run an asp.net application?
What is session id in web application?
What is OSI layer? Explain different layers.