All Packages Class Hierarchy This Package Previous Next Index
waitUntil(cond), where cond is a Condition-object, causes the active discrete process, current, to become passive (idle) over a period which is planned to last until the test-method of cond evaluates to true.
Example:
waitUntil(new Condition() { public void test() { return pressure.state >= 200; } });
public abstract boolean test()
All Packages Class Hierarchy This Package Previous Next Index