In C#, when we should use WaitHandle instead of lock ?
|
feedback
|
|
A lock is fundamentally different from a
The first line says, "I want exclusive access to that resource," and will wait until that resource is available (i.e. nobody else has a lock on it). Then the code runs and at the end the lock is released so that others can use it.
Your code is waiting for some other thread (possibly in a different process) to signal that So, to answer your question, you should use a lock when you want to gain exclusive access to a resource. You should use | |||
feedback
|
|
They accomplish completely different things. A | |||
|
feedback
|
|
A WaitHandle can wait for multiple handles, a lock can wait for only one. | |||
|
feedback
|
|
When you need it. Seriously, lock is syntactic sugar with Only use it if you need more flexibility (like e.g. holding on to a lock longer than the current scope...) or manage multiple locks in the right order etc. | |||
|
feedback
|
|
| |||
|
feedback
|
|
The best explanation lies in these two links. Unfortunately you're going to have to do some reading to get a full answer to the type of question you asked: This contains an example as well: http://msdn.microsoft.com/en-us/library/system.threading.waithandle.aspx | |||
|
feedback
|