Asynchronous calls in ADO.Net 2.0

We can have Asynchornous calls in ado.net2.0 using different models. The models are
callback, polling and wait models.

callback and polling are usesfull when your application is processing only one asynchronous operation at a time.

The Wait models are useful when your application processing multiple asynchronous operations.

There are two Wait models.

They are Wait (Any) model and Wait (All) model.

Comments

Popular Posts