I've inherited a bit of threaded code, and upon reviewing it, I'm finding structures like this (within a background thread method):
private ManualResetEvent stopEvent = new ManualResetEvent(false);
private void Run_Thread() {
while (!stopEvent.WaitOne(0, true)) {
// code here
}
}
Usually there's a public or private Stop() method, like so:
public void Stop() {
stopEvent.Set();
bgThread.Join();
}
My question is this: What is served by using a wait handle here? It seems as though this is done to ensure that signalling for a stop is an atomic operation, but I thought writing to a boolean was atomic anyway. If that's the case, is there any reason not to just use the following:
private void Run_Thread() {
while(!stop) {
// code here
}
}
public void Stop() {
stop = true;
bgThread.Join();
}
bgThread.Join()– John Gietzen Mar 22 '11 at 19:19