#region CmdMessenger - MIT - (c) 2014 Thijs Elenbaas. /* CmdMessenger - library that provides command based messaging Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Copyright 2014 - Thijs Elenbaas */ #endregion using System.Threading; namespace CommandMessenger { // Functionality comparable to AutoResetEvent (http://www.albahari.com/threading/part2.aspx#_AutoResetEvent) // but implemented using the monitor class: not inter processs, but ought to be more efficient. public class EventWaiter { public enum WaitState { TimeOut, Normal } private readonly object _key = new object(); private bool _block; /// /// start blocked (waiting for signal) /// public EventWaiter() { lock (_key) { _block = true; Monitor.Pulse(_key); } } /// /// start blocked or signalled. /// /// If true, first Wait will directly continue public EventWaiter(bool set) { lock (_key) { _block = !set; Monitor.Pulse(_key); } } /// /// Wait function. Blocks until signal is set or time-out /// /// time-out in ms /// public WaitState WaitOne(int timeOut) { lock (_key) { // Check if signal has already been raised before the wait function is entered if (!_block) { // If so, reset event for next time and exit wait loop _block = true; return WaitState.Normal; } // Wait under conditions bool noTimeOut = true; while (noTimeOut && _block) { noTimeOut = Monitor.Wait(_key, timeOut); } // Block Wait for next entry _block = true; // Return whether the Wait function was quit because of an Set event or timeout return noTimeOut ? WaitState.Normal : WaitState.TimeOut; } } /// /// Sets signal, will unblock thread in Wait function /// public void Set() { lock (_key) { _block = false; Monitor.Pulse(_key); } } /// /// Resets signal, will block threads entering Wait function /// public void Reset() { lock (_key) { _block = true; } } } }