new Mutex(false), WaitOne : Mutex « Thread « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Thread » MutexScreenshots 
new Mutex(false), WaitOne
 
using System;
using System.Threading;
   
class Database
{
    static Mutex mutex = new Mutex(false);
   
    public static void SaveData(string text)
    {
        mutex.WaitOne();
        Console.WriteLine("Database.SaveData - Started");
        Console.WriteLine("Database.SaveData - Working");
        for (int i = 0; i < 100; i++)
        {
            Console.Write(text);
        }
        Console.WriteLine("\nDatabase.SaveData - Ended");
        mutex.Close();
    }
}
   
class ThreadMutexApp{
    public static void WorkerThreadMethod1() {
        Console.WriteLine("Worker thread #1 - Started");
        Database.SaveData("x");
        Console.WriteLine("Worker thread #1 - Returned from Output");
    }
   
    public static void WorkerThreadMethod2() {
      Console.WriteLine("Worker thread #2 - Started");
      Database.SaveData("o");
      Console.WriteLine("Worker thread #2 - Returned from Output");
    }
   
    public static void Main() {
        ThreadStart worker1 = new ThreadStart(WorkerThreadMethod1);
        ThreadStart worker2 = new ThreadStart(WorkerThreadMethod2);
   
        Console.WriteLine("Main - Creating worker threads");
   
        Thread t1 = new Thread(worker1);
        Thread t2 = new Thread(worker2);
   
        t1.Start();
        t2.Start();
   
        Console.ReadLine();
    }
}

 
Related examples in the same category
1.new Mutex
2.new Mutex(true, "MutexExample", out ownsMutex)), ReleaseMutex
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.