Package java.lang
Class Object

Public Method notify

final void notify()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Wakes up a single thread that is waiting for this object's monitor. If many threads are waiting on this object, one of them is chosen to be awakened. 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.