What notifyAll() method do?

What notifyAll() method do? Correct Answer Wakes up all threads that are waiting on this object's monitor

notifyAll() : Wakes up all threads that are waiting on this object's monitor.A thread waits on an object's monitor by calling one of the wait methods.

Related Questions