Class marimba.util.Timer
All Packages Class Hierarchy This Package Previous Next Index
Class marimba.util.Timer
java.lang.Object
|
+----marimba.util.Timer
- public class Timer
- extends Object
- implements Runnable
A Timer for keeping track of repeated time events.
- Version:
- 1.20, 01/15/97
- Author:
- Arthur van Hoff
-
master
- The master clock.
-
Timer()
-
-
add(TimerClient)
- Add a client to this clock.
-
add(TimerClient, long, Object)
- Add a client to this clock.
-
remove(TimerClient)
- Remove a client from this Timer.
-
remove(TimerClient, Object)
- Remove a client from this clock.
-
run()
- The clock is ticking....
master
public static Timer master
- The master clock.
Timer
public Timer()
add
public void add(TimerClient client)
- Add a client to this clock.
add
public void add(TimerClient client,
long tm,
Object arg)
- Add a client to this clock.
remove
public void remove(TimerClient client)
- Remove a client from this Timer.
remove
public synchronized void remove(TimerClient client,
Object arg)
- Remove a client from this clock.
run
public void run()
- The clock is ticking....
All Packages Class Hierarchy This Package Previous Next Index