FormRun.wait Method

Pauses a process.

Syntax

public void wait([boolean modal])

Run On

Client

Parameters

Remarks

The most common use for this method is to start an object (such as a form) that asks the user for some input and then call the wait method on that object. The next line of code is not executed until the object has called the notify or notifyAll method.When the wait method is called from a form, you do not have to call the notify methods manually, because forms call the Object.notifyAll method when the user either closes the form or clicks the Apply button. This method is not meant for thread synchronization.

See Also

Reference

FormRun Class