ManualResetEvent Help

nab2006

New member
Joined
Aug 3, 2006
Messages
2
Programming Experience
Beginner
Hi,
I am a new VB programmer. I'm working on a Client/Server application.
While reading the .Net Documentation I came across the ManualResetEvent class. Can any one please give me some links or some books that talk about using this class and some examples about it.
Thanks
 
ManualResetEvent and AutoResetEvents are used for signaling between threads for wait behaviour, they both inherit EventWaitHandle. The manual one is like a door you have to open and close, the auto one shuts itself each time it's opened. It's well described with examples in the documentation link vis781 gave you. Here is link to part 3 of a DeveloperFushion article on the topic http://www.developerfusion.co.uk/show/5184/3/ You should also find it discussed in any intermediate level tutorial or book chapter about multi-threading.
 
Back
Top