fr.dyade.aaa.util
Class TimerTask

java.lang.Object
  extended byfr.dyade.aaa.util.TimerTask

public abstract class TimerTask
extends java.lang.Object

The TimerTask class is the base class for implementing tasks run by a Timer instance.

See Also:
Timer

Constructor Summary
TimerTask()
           
 
Method Summary
 boolean cancel()
          Cancels this task by removing it from the timer's tasks list, and interrupting the timer thread if necessary.
abstract  void run()
          Method called by the timer when the task is ready to execute.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TimerTask

public TimerTask()
Method Detail

cancel

public boolean cancel()
Cancels this task by removing it from the timer's tasks list, and interrupting the timer thread if necessary.


run

public abstract void run()
Method called by the timer when the task is ready to execute.



Copyright ? 2004 Scalagent - All rights reserved