Tagged Questions
4
votes
6answers
755 views
For a windows service, which is better, a wait-spin or a timer?
This question about Timers for windows services got me thinking:
Say I have (and I do) a windows service thats waiting on a WaitHandle and when woken, it dives into a wait-spin like I have shown ...
1
vote
6answers
1k views
What is the difference between Thread.Sleep(timeout) and ManualResetEvent.Wait(timeout)?
Both Thread.Sleep(timeout) and resetEvent.Wait(timeout) cause execution to pause for at least timeout milliseconds, so is there a difference between them? I know that Thread.Sleep causes the thread to ...