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 connection pooling and how to enable and disable connection pooling?
What are the different types of cookies in asp.net?
Does asp.net still recognize the global.asa file?
What is smpte vc-1?
What kind of programming language is ASP.NET?
What are directives in asp.net?
there is two functions function a and function b like fun a(){.... ..... } fun b() { } in function b i write the coding to add two numbers and i need to dispaly the sum result in function a with out using global variable. how we do?
How to prevent client side validation from the ASP.NET validation controls?
What is postback and autopostback in asp.net?
Why does my asp.net file have multiple tag with runat=server?
what are the security certificates used in webservices?
How can you handle errors in Web API?
What are the session management techniques asp net?
Write a code for passing ArrayList in Web API?
Describe how passport authentication works.