Package java.lang
Class Object

Public Method notifyAll

final void notifyAll()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

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.

This method should only be called by a thread that is the owner of this object's monitor. A thread becomes the owner of the object's monitor in one of three ways:

Only one thread at a time can own an object's monitor.