Object.notifyAll Method

Releases a lock on the object that was issued by the wait method on this object.

Syntax

public void notifyAll()

Run On

Called

Remarks

In the current implementation of this method, there is no difference between calling the notify method and the notifyAll method.

Forms will automatically call the notifyAll method when the user closes the form or presses the Apply button.

Examples

The following example demonstrates the 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(); 
} 

See Also

Object Class

Object.wait Method