Top "Manualresetevent" questions

ManualResetEvent notifies one or more waiting threads that an event has occurred

What is the difference between ManualResetEvent and AutoResetEvent in .NET?

I have read the documentation on this and I think I understand. An AutoResetEvent resets when the code passes through …

c# .net multithreading autoresetevent manualresetevent
How to keep a .NET console app running?

Consider a Console application that starts up some services in a separate thread. All it needs to do is wait …

c# multithreading sleep manualresetevent
To make a choice between ManualResetEvent or Thread.Sleep()

I am not sure which strategy to adopt...I am focusing on my operation getting completed, but I'd also like …

c# multithreading sleep manualresetevent
Regarding the use of ManualResetEvent usage c#?

i am not familiar with the usage of ManualResetEvent ? is it thread related. what it does and when it is …

c# manualresetevent
ManualResetEvent.WaitOne() doesn't return if Reset() is called immediately after Set()

I have a problem in a production service which contains a "watchdog" timer used to check whether the main processing …

c# multithreading .net-4.0 manualresetevent
ManualResetEvent vs. Thread.Sleep

I implemented the following background processing thread, where Jobs is a Queue<T>: static void WorkThread() { while (working) { …

c# multithreading sleep manualresetevent
ManualResetEvent WaitOne not unblocking

I'm a little confused over a ManualResetEvent that I'm using which doesn't appear to be unblocking. Anyone know why this …

c# multithreading manualresetevent
ManualResetEventSlim recommended wait time

The MSDN documentation for ManualResetEventSlim states You can use this class for better performance than ManualResetEvent when wait times are …

c# multithreading manualresetevent