Firefish 0.5.10

Uses of Class
gov.lbl.dsd.firefish.util.TimerTask

Packages that use TimerTask
gov.lbl.dsd.firefish.util Utilitiy classes such as special hash sets, timers that trigger tasks at a scheduled time. 
 

Uses of TimerTask in gov.lbl.dsd.firefish.util
 

Subclasses of TimerTask in gov.lbl.dsd.firefish.util
 class KeyedTimerTask
          A task for HashMaps; Comparison for equality is by a given key; to be executed by a Timer at a scheduled time.
 

Methods in gov.lbl.dsd.firefish.util that return TimerTask
 TimerTask Timer.findTask(TimerTask task)
          Finds and returns a contained task that is equal to the given task.
 

Methods in gov.lbl.dsd.firefish.util with parameters of type TimerTask
 TimerTask Timer.findTask(TimerTask task)
          Finds and returns a contained task that is equal to the given task.
 void Timer.schedule(TimerTask task, long delay)
          Schedules the specified task for execution after the specified delay.
 void Timer.schedule(TimerTask task, Date time)
          Schedules the specified task for execution at the specified time.
 void Timer.schedule(TimerTask task, long delay, long period)
          Schedules the specified task for repeated fixed-delay execution, beginning after the specified delay.
 void Timer.schedule(TimerTask task, Date firstTime, long period)
          Schedules the specified task for repeated fixed-delay execution, beginning at the specified time.
 void Timer.scheduleAtFixedRate(TimerTask task, long delay, long period)
          Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
 void Timer.scheduleAtFixedRate(TimerTask task, Date firstTime, long period)
          Schedules the specified task for repeated fixed-rate execution, beginning at the specified time.
 boolean Timer.cancelAndSchedule(TimerTask task, Date time)
          Cancels the first task that is equal to the given task (if such task exists in the queue), then schedules the task for the given time.
 


Firefish 0.5.10

Jump to the Firefish Homepage