What are asynchronous callbacks ?
Answer Posted / zafar mohammed ameem
Callbacks are usually the methods which should be invoked
after execution of some method.
Asynchronous Call back is a way of invoking a method
Asynchronously (on a different thread). But before
invocation of method we provide a callback delegate which
refers to the method which should be called after execution
of async method. This method is called call back method.
AsyncCall backs are useful when user intends to execute any
method asynchronously and notify some thing after method is
finshed, without modifying the signature of the method
being called.
| Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
What is the exact purpose of http handlers?
Can you explain autopostback?
What is validation in asp.net?
What threading model used in asp and asp.net?
What is a session in asp.net?
Any disadvantages in Dataset and in reflection ?
How do I open an ashx file?
Explain client side state management system.
What is the use of ASP.NET routing?
How many web.config files can I have in an application?
Is asp.net outdated?
Can you explain composite pattern?
What does asp in asp.net stand for?
What is the use of express session?
What are tuples?