| |
|
| java.lang.Object java.util.TimerTask org.zkoss.util.ScalableTimerTask
ScalableTimerTask | abstract public class ScalableTimerTask extends TimerTask (Code) | | A task that can be scheduled for one-time execution by
a scalable timer (
ScalableTimer .
author: tomyeh since: 3.0.1 |
cancel | public boolean cancel()(Code) | | Cancels this timer task.
true if this task is scheduled for one-time execution and has not yet run.Returns false if the task was scheduled for one-time execution and has already run. |
exec | abstract public void exec()(Code) | | The action to be performed by this timer task.
The derived class must override this method instead of
ScalableTimerTask.run .
|
|
|
|