Monitor.PulseAll
notifies all waiting threads in the queue.
Monitor.Pulse
notifies a thread in the waiting q
Use PulseAll
when you want to wake up multiple threads, because the condition they're waiting for may now be fulfilled for more than one thread. (Waiting is almost always associated with a condition - you should usually be testing that condition in a while
loop.)
Use Pulse
when you only want to wake up one thread, because only one thread will actually be able to do useful work.
To give two analogies:
Imagine you've got a single printer. Only one person can use it at a time, so if you're got a lot of people waiting, you send them all to sleep - but you only wake one person up when the printer becomes free. This mirrors the use of Pulse
.
Now imagine you run a shop. While you're closed, customers wait outside the shop. When you open the shop, you don't just want to wake up one customer - they can all come in now. This mirrors the use of PulseAll
.