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 implement sql caching in asp.net?
What are Session states available and its Uses?
Can we set which type of comparison we want to perform by the CompareValidator control?
What is caching? What are different ways of caching in asp.net?
What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
What are different types of api?
Name the two properties are on every validation control?
What are server activated objects?
what cut off mark for po's,what questions they asked for interview?
What is difference between view state and session state?
Which Is Faster MVC or ASP.net ?
Explain the different parts that constitute ASP.NET application?
What are standard controls?
How to sign out from forms authentication?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?