Uses of Interface
planet.util.timer.TimerTask

Packages that use TimerTask
planet.chord   
planet.commonapi   
planet.generic.commonapi   
planet.test.timer   
planet.util.timer   
 

Uses of TimerTask in planet.chord
 

Classes in planet.chord that implement TimerTask
 class ChordNode.FixFingerTask
          Simple TimerTask that invoke fix_fingers() Node method.
 class ChordNode.StabilizeTask
          Simple TimerTask that invoke stabilize() Node method.
 

Uses of TimerTask in planet.commonapi
 

Methods in planet.commonapi with parameters of type TimerTask
 void Node.setTimer(TimerTask task, long firstTime)
          Sets a new task to make only once time.
 void Node.setTimer(TimerTask task, long firstTime, long period)
          Sets a new task to make periodicly at period time.
 

Uses of TimerTask in planet.generic.commonapi
 

Methods in planet.generic.commonapi with parameters of type TimerTask
 void NodeImpl.setTimer(TimerTask task, long firstTime, long period)
          Sets a task to be executed periodicly at each period of time.
 void NodeImpl.setTimer(TimerTask task, long firstTime)
          Sets a task to be executed only one time at specified firstTime.
 void NetworkNodeImpl.setTimer(TimerTask task, long firstTime, long period)
          Sets a task to be executed periodicly at each period of time.
 void NetworkNodeImpl.setTimer(TimerTask task, long firstTime)
          Sets a task to be executed only one time at specified firstTime.
 

Uses of TimerTask in planet.test.timer
 

Classes in planet.test.timer that implement TimerTask
 class SimulationTimerTest.TestTimerTask
          Simple TimerTask that only prints the actual step and its name for each invocation of run() method.
 

Uses of TimerTask in planet.util.timer
 

Classes in planet.util.timer that implement TimerTask
 class ThreadTimerTask
          This concrete implementation extends the java.util.TimerTask and adapt this implementation to use the superclass.
 class TimerTaskImpl
          This abstract implementation is only usefull for simulation environment.
 

Methods in planet.util.timer with parameters of type TimerTask
 void Timer.setTimerTask(TimerTask task, long delay)
          Sets a TimerTask to execute only once, after delay time.
 void Timer.setTimerTask(TimerTask task, long delay, long period)
          Sets a TimerTask to execute only once, after delay time, and after each period time.
 void ThreadTimer.setTimerTask(TimerTask task, long delay)
          Sets a new TimerTask to schedule for only one activation.
 void ThreadTimer.setTimerTask(TimerTask task, long delay, long period)
          Sets a new TimerTask to schedule periodicly.
 void SimulationTimerImpl.setTimerTask(TimerTask task, long delay)
          Permits add a task for only one execution after delay steps.
 void SimulationTimerImpl.setTimerTask(TimerTask task, long delay, long period)
          Permits add a task for repeatly execution, the first time after delay steps, and others after period steps.