From: 011netservice@gmail.com Date: 2022-04-24 Subject: WaitHandle.txt 歡迎來信交流 ref: https://docs.microsoft.com/en-us/dotnet/api/system.threading.waithandle?view=netframework-4.6 Encapsulates operating system-specific objects that wait for exclusive access to shared resources. 封裝系統中控制物件, 作為(唯一使用共用資源)的管制. [System.Runtime.InteropServices.ComVisible(true)] public abstract class WaitHandle : MarshalByRefObject, IDisposable Inheritance Object -> MarshalByRefObject -> WaitHandle Derived 這三個都繼承了 WaitHandle System.Threading.EventWaitHandle System.Threading.Mutex System.Threading.Semaphore Attributes ComVisibleAttribute Implements IDisposable Examples The following code example shows how two threads can do background tasks while the Main thread waits for the tasks to complete using the static WaitAny and WaitAll methods of the WaitHandle class. using System; using System.Threading; public sealed class App { // Define an array with two AutoResetEvent WaitHandles. static WaitHandle[] waitHandles = new WaitHandle[] { new AutoResetEvent(false), new AutoResetEvent(false) }; // Define a random number generator for testing. static Random r = new Random(); static void Main() { // Queue up two tasks on two different threads; // wait until all tasks are completed. DateTime dt = DateTime.Now; Console.WriteLine("Main thread is waiting for BOTH tasks to complete."); ThreadPool.QueueUserWorkItem(new WaitCallback(DoTask), waitHandles[0]); ThreadPool.QueueUserWorkItem(new WaitCallback(DoTask), waitHandles[1]); WaitHandle.WaitAll(waitHandles); // The time shown below should match the longest task. Console.WriteLine("Both tasks are completed (time waited={0})", (DateTime.Now - dt).TotalMilliseconds); // Queue up two tasks on two different threads; // wait until any tasks are completed. dt = DateTime.Now; Console.WriteLine(); Console.WriteLine("The main thread is waiting for either task to complete."); ThreadPool.QueueUserWorkItem(new WaitCallback(DoTask), waitHandles[0]); ThreadPool.QueueUserWorkItem(new WaitCallback(DoTask), waitHandles[1]); int index = WaitHandle.WaitAny(waitHandles); // The time shown below should match the shortest task. Console.WriteLine("Task {0} finished first (time waited={1}).", index + 1, (DateTime.Now - dt).TotalMilliseconds); } static void DoTask(Object state) { AutoResetEvent are = (AutoResetEvent) state; int time = 1000 * r.Next(2, 10); Console.WriteLine("Performing a task for {0} milliseconds.", time); Thread.Sleep(time); are.Set(); } } // This code produces output similar to the following: // // Main thread is waiting for BOTH tasks to complete. // Performing a task for 7000 milliseconds. // Performing a task for 4000 milliseconds. // Both tasks are completed (time waited=7064.8052) // // The main thread is waiting for either task to complete. // Performing a task for 2000 milliseconds. // Performing a task for 2000 milliseconds. // Task 1 finished first (time waited=2000.6528). Remarks The WaitHandle class encapsulates a native operating system synchronization handle and is used to represent all synchronization objects in the runtime that allow multiple wait operations. For a comparison of wait handles with other synchronization objects, see Overview of Synchronization Primitives. The WaitHandle class itself is abstract. Classes derived from WaitHandle define a signaling mechanism to indicate taking or releasing access to a shared resource, but they use the inherited WaitHandle methods to block while waiting for access to shared resources. The classes derived from WaitHandle include: The Mutex class. See Mutexes. The EventWaitHandle class and its derived classes, AutoResetEvent and ManualResetEvent. The Semaphore class. See Semaphore and SemaphoreSlim. Threads can block on an individual wait handle by calling the instance method WaitOne, which is inherited by classes derived from WaitHandle. The derived classes of WaitHandle differ in their thread affinity. Event wait handles (EventWaitHandle, AutoResetEvent, and ManualResetEvent) and semaphores do not have thread affinity; any thread can signal an event wait handle or semaphore. Mutexes, on the other hand, do have thread affinity; the thread that owns a mutex must release it, and an exception is thrown if a thread calls the ReleaseMutex method on a mutex that it does not own. Because the WaitHandle class derives from MarshalByRefObject, these classes can be used to synchronize the activities of threads across application domain boundaries. In addition to its derived classes, the WaitHandle class has a number of static methods that block a thread until one or more synchronization objects receive a signal. These include: SignalAndWait, which allows a thread to signal one wait handle and immediately wait on another. WaitAll, which allows a thread to wait until all the wait handles in an array receive a signal. WaitAny, which allows a thread to wait until any one of a specified set of wait handles has been signaled. The overloads of these methods provide timeout intervals for abandoning the wait, and the opportunity to exit a synchronization context before entering the wait, allowing other threads to use the synchronization context. Important This type implements the IDisposable interface. When you have finished using the type or a type derived from it, you should dispose of it either directly or indirectly. To dispose of the type directly, call its Close method in a try/catch block. To dispose of it indirectly, use a language construct such as using (in C#) or Using (in Visual Basic). For more information, see the "Using an Object that Implements IDisposable" section in the IDisposable interface topic. WaitHandle implements the Dispose pattern. See Implementing a Dispose method. When you derive from WaitHandle, use the SafeWaitHandle property to store your native operating system handle. You do not need to override the protected Dispose method unless you use additional unmanaged resources.