Are condition variables & monitors used in C#?
Can someone give me an example?
|
Are condition variables & monitors used in C#? Can someone give me an example?
| |||
feedback
|
|
The equivalent of a condition variable in .NET is the abstract WaitHandle class. Practical implementations of it are the ManualResetEvent, AutoResetEvent, Mutex and Semaphore classes. System.Threading.Monitor is the direct equivalent of a monitor. The lock statement makes it very easy to use, it ensures the monitor is always exited without explicitly programming the Exit() call. | |||||||||
feedback
|
|
System.Threading.Monitor is one way (example within) | |||
|
feedback
|
|
You can use the Lock object which acts as syntactic sugar for the Monitor class.
http://msdn.microsoft.com/en-us/library/c5kehkcz%28VS.80%29.aspx | |||||||
feedback
|
|
As an alternative to ManualResetEvent and friends, Windows now provides native support for condition variables. I haven't benchmarked it myself, but there's a good chance your performance will improve when leveraging the native API. Here's a Code Project article that explains how to access this (relatively new) construct from C#: | |||
|
feedback
|