Take the Pausing a Thread example. If I use notifyAll instead of notify, is there any side effect, and is it necessary?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
|
In that example, it will not make any difference, because there's only 1 thread waiting. The difference between |
|||||
|
|
Using notifyAll as opposed to notify is important if you can have multiple parties waiting on the object. If only one thread ever waits, then there is no difference between calling notify vs notifyAll. |
|||
|
|
|
Create a new runnable. In the run method "start" countdownlatch is waiting and will not allow execution unless it is released using calling countdown on that latch for a predefined time. In this case 1. (since start is passed 1 as concurrent no) // Revised Answer. // A runnable class.
// This is the entry point method that executes the worker thread.
|
||||