Package planet.util.timer

Interface Summary
SimulationTimer Permits to inform to differents Timer of nodes the actual step in simulation process.
Timer This interface permits to schedule differents tasks to specified delays, and to make periodic any task, begining to the specified delay and rerun after period time.
TimerTask This interface abstract the responsability of a Timer, who invokes the timeout() method when the specified time is passed.
 

Class Summary
ControlTimer This class has all its members statics to permit in a simulation envirionment controls all timers and to inform them of the actual step of simulation.
SimulationTimerImpl Implements the contract that is specified by the SimulationTimer interface.
ThreadTimer Implements a Timer based with java.util.Timer, with a non daemon mode.
ThreadTimerTask This concrete implementation extends the java.util.TimerTask and adapt this implementation to use the superclass.
TimerTaskImpl This abstract implementation is only usefull for simulation environment.