Showing posts with label Threading. Show all posts
Showing posts with label Threading. Show all posts

What is the threading model for ASP.NET ?

Sunday, March 13, 2011

MTA Threading model.


1.www.codecollege.NET 2.http://www.interviewsguru.com 3.The Encylopedia of Web Sites 4.Blogging and Earning

What is the expansion of CAO?

Sunday, December 13, 2009


Client-Activated Objects.


www.codecollege.NET

Daily Tips- Tip #39 - How will you beging a running a standard application message loop on the current thread?

Friday, December 11, 2009


Application.Run(new Form1());


www.codecollege.NET

How will you end an asynchronous call with a delegate?

Tuesday, October 6, 2009


EndInvoke



www.codecollege.NET

How will you start an asynchronous call with a delegate?


BeginInvoke



www.codecollege.NET

What are the standard patterns for asynchronous methods calls?


1. Wait Until Done
2. Polling
3. Callback



www.codecollege.NET

When a program wants to retrieve the results of the completed asynchronous method,Which property will it check?


IsCompleted.



www.codecollege.NET

How will you make a process wait ?

Wednesday, August 5, 2009


The following code will make the process wait for 10 seconds.
System.Threading.Thread.Sleep(1000);



www.codecollege.NET

Can we have multiple threads in one App domain ?

Tuesday, August 4, 2009


Yes.



www.codecollege.NET

How can you reference current thread of the method ?

Monday, July 27, 2009



You can do that by calling the method,
Thread.CurrentThread();


www.codecollege.NET

What are Daemon threads and how can you create one?

Thursday, July 16, 2009


What?
It is a thread which runs in the background and stops when the programm is not running.

How to create one?
Thread.Isbackground=true




www.codecollege.NET
Blog Widget by LinkWithin