What are asynchronous callbacks ?

Answers were Sorted based on User's Feedback



What are asynchronous callbacks ?..

Answer / 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

What are asynchronous callbacks ?..

Answer / uma`

client has to wait untill the method that completes current
process.by using delegates we call the asynchronous calls

Is This Answer Correct ?    19 Yes 4 No

What are asynchronous callbacks ?..

Answer / 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

What are asynchronous callbacks ?..

Answer / rakesh

call multiple threads at a time

Is This Answer Correct ?    18 Yes 13 No

What are asynchronous callbacks ?..

Answer / saami solutions

when a synchronous call is made, the calling thread is
blocked until the method completes whereas an asynchronous
call is made on a different thread, and this allows the
original thread to continue its work while the asynchronous
call is in progress.

Is This Answer Correct ?    9 Yes 4 No

What are asynchronous callbacks ?..

Answer / neeta

* Asynchronous callbacks means that a call is made from a Main Program to a .net class's method and the program continues execution.
* when the callback is made (Means the method has finished it work and returns value) ,the Main Program handles it.

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

What is dataset and uses of dataset ?

6 Answers   HCL, TCS,


which event in global.asx that fires for every request of same user?

4 Answers   FactorH,


Explain the concept of View Model in MVC?

0 Answers   B-Ways TecnoSoft,


if we establish the cinnection with connection string tag in web.config file,can i go for encrypt and decrypt with that?

1 Answers  


Define state managenent?Descibe state managenent technique which maintain the information at server site focusing it IDS features and limitations?

1 Answers  


What is Partial in ASP.NET 2.0?

2 Answers   Fulcrum Logic,


What is use of Master Page in ASP.NET web pages?

0 Answers   Sans Pareil IT Services,


Which method do you invoke on the DataAdapter control to load your generated dataset with data?

2 Answers   Siebel Systems,


Singleton Design pattern?How do you achieve it?

3 Answers   Microsoft,


differences between class inheritance and interface?

2 Answers  


If 200 is for all successful operation then why do we have 201 response codes?

0 Answers  


Explain the function of new view engine in asp.net? : asp.net mvc

0 Answers  


Categories