Thread interupting

In this chapter you will learn:

  1. Interupt a sleeping thread

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:

  1. Consumer Producer with Monitor
Home » C# Tutorial » Thread
Thread creation
ThreadStart
Make a thread to sleep
Join thread
Thread attribute
Thread priorities
Thread State
Background thread
Thread interupting
Monitor
Mutex