Object.notifyAll Method
Releases a lock on the object that was issued by a wait method on this object.
public void notifyAll()
The following example demonstrates usage of the notifyAll method.
public void doWork()
{
//Do some work.
this.setTimeOut(identifierstr(workerFunction), 0);
this.wait(); // block and wait for notify.
}
public void workerFunction()
{
// Do some work.
//...
// Work is done. Notify an unblock.
this.notify();
}