Mutex synchronizes access to a protected resource : Mutex « Thread « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Thread » Mutex 
23.7.2.Mutex synchronizes access to a protected resource
' Mutex can be used with WaitHandle.WaitAll and WaitAny, and can be passed across AppDomain boundaries.

Imports System
Imports System.Threading
Imports Microsoft.VisualBasic

Class Test
    Private Shared mut As New Mutex()
    <MTAThread> _
    Shared Sub Main()
        Dim As Integer
        For i = To 3
            Dim myThread As New Thread(AddressOf MyThreadProc)
            myThread.Name = "Thread:" + i
            myThread.Start()
        Next i
    End Sub
    Private Shared Sub MyThreadProc()
        Dim As Integer
        For i = To 3
            UseResource()
        Next i
    End Sub
    Private Shared Sub UseResource()
        mut.WaitOne()
        Console.WriteLine("{0} has entered protected area",Thread.CurrentThread.Name)
        Thread.Sleep(500)
        Console.WriteLine("{0} is leaving protected area",Thread.CurrentThread.Name)
        mut.ReleaseMutex()
    End Sub
End Class
23.7.Mutex
23.7.1.Global Mutex
23.7.2.Mutex synchronizes access to a protected resource
23.7.3.Not attach the security object to a Mutex object.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.