I have a WaitHandle and I would like to know how to check if the WaitHandle has already been set or not.

Note: I can add a bool variable and whenever Set() method is used set the variable to true, but this behaviour must be built in WaitHandle somewhere.

Thanks for help!

link|improve this question

My answer was only seconds before SwDevMan's which is much clearer and includes the documentation quote, so I'm deleting it. However, I still wonder "Are you dealing with an auto-reset event that might already have been reset, or that the test code must not reset?" – Ben Voigt Jul 24 '10 at 18:19
feedback

4 Answers

up vote 11 down vote accepted

Try WaitHandle.WaitOne(0)

If millisecondsTimeout is zero, the method does not block. It tests the state of the wait handle and returns immediately.

link|improve this answer
Ashamed Thanks! – MartyIX Jul 22 '10 at 20:30
+1 Good clear answer. Nice and simple, though I would suggest changing "Try" to "Use". As it stands, you seem unsure of your answer. – Jeff Yates Jul 22 '10 at 20:31
The only issue is that for some WaitHandles (auto-reset event, semaphore), the ready state will actually be reset by waiting on it. – Ben Voigt Jul 24 '10 at 18:21
feedback

Use one of the Wait... methods on WaitHandle that takes a timeout value, such as WaitOne, and pass a timeout of 0.

link|improve this answer
feedback
const int DoNotWait = 0;

ManualResetEvent waitHandle = new ManualResetEvent(false);                   

Console.WriteLine("Is set:{0}", waitHandle.WaitOne(DoNotWait));

waitHandle.Set(); 

Console.WriteLine("Is set:{0}", waitHandle.WaitOne(DoNotWait));   

Output:

Is set:False

Is set:True

link|improve this answer
Why use a keyword for the variable? It's unnecessary and makes your answer harder to read. – Jeff Yates Jul 22 '10 at 20:31
@Jeff Sure, it's just a hard thing to name for some sample code, and I've been writing a lot of code today. – chibacity Jul 22 '10 at 20:33
@chibacity: it's easy to write something other than event. waitHandle, resetEvent, mre, myEvent. The list is endless and it would make your example better. – Jeff Yates Jul 22 '10 at 20:35
@Jeff You have no idea of my state of mental exhaustion at the moment - but I will comply! :) – chibacity Jul 22 '10 at 20:37
@chibacity: I can sympathise but if a job's worth doing, it's worth doing well. +1 – Jeff Yates Jul 22 '10 at 20:40
show 1 more comment
feedback

You can use the WaitOne(int millisecondsTimeout, bool exitContext) method and pass in 0 for the timespan. It will return right away.

bool isSet = yourWaitHandle.WaitOne(0, true);
link|improve this answer
Why should they use the one that takes an exitContext value? Considering that there are alternatives which do not require this field, you should explain its necessity. – Jeff Yates Jul 22 '10 at 20:34
Online help for VS2005 only shows WaitOne(), WaitOne(int,bool), and WaitOne(TimeSpan,bool). So, it's likely they didn't find WaitOne(int) – Xaade Nov 15 '11 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.