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 do you create a master page?
Write a code for passing ArrayList in Web API?
Can we set which type of comparison we want to perform by the CompareValidator control?
What is viewstate in asp net with example?
Name the two properties are on every validation control?
What is inheritance and an how it be used, example with an example?
Explain Optimization technique description?
How does asp net store session ids by default?
Why do we need Sessions?
If you want to write your own dot net language, what steps you will you take care?
What is the basic difference between asp and asp.net?
What are the advantages of passport authentication?
How to register exception filter globally?
In a webservice, need to display 10 rows from a table. Which is the best choice among datareader or dataset?
Describe the application event handlers in ASP.NET?