Thread interupting
In this chapter you will learn:
Interupt a sleeping thread
using System;// jav a 2 s .c om
using System.Threading;
public class MainClass
{
public static int Main()
{
Thread X = new Thread(new ThreadStart(Sleep));
X.Start();
X.Interrupt();
X.Join();
return 0;
}
public static void Sleep()
{
try
{
Thread.Sleep(Timeout.Infinite);
}catch (ThreadInterruptedException e){
Console.WriteLine("Thread Interupted");
}catch(ThreadAbortException e){
Thread.ResetAbort();
}
}
}
The code above generates the following result.
Next chapter...
What you will learn in the next chapter: