|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.gwt.user.client.Timer
A simplified, browser-safe timer class. This class serves the same purpose as
java.util.Timer, but is simplified because of the single-threaded
environment.
To schedule a timer, simply create a subclass of it (overriding run()
)
and call schedule(long)
or scheduleRepeating(long)
.
Example: code
Field Summary |
Fields inherited from class java.lang.Object |
typeId, typeName |
Constructor Summary | |
Timer()
|
Method Summary | |
void |
cancel()
Cancels this timer. |
abstract void |
run()
This method will be called when a timer fires. |
void |
schedule(long delayMillis)
Schedules a timer to elapse in the future. |
void |
scheduleRepeating(long periodMillis)
Schedules a timer that elapses repeatedly. |
Methods inherited from class java.lang.Object |
equals, finalize, hashCode, toString |
Constructor Detail |
public Timer()
Method Detail |
public void cancel()
public abstract void run()
public void schedule(long delayMillis)
delayMillis
- how long to wait before the timer elapses, in
millisecondspublic void scheduleRepeating(long periodMillis)
periodMillis
- how long to wait before the timer elapses, in
milliseconds, between each repetition
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |