Package doodlepad
Interface TimerEventListener
public interface TimerEventListener
The interface to be implemented when handling TimerStartListener, TimerStopListener,
and TimerTickListener events.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onTick
(long when) The onTick method is invoked by TimerTickListeners
-
Method Details
-
onTick
void onTick(long when) The onTick method is invoked by TimerTickListeners- Parameters:
when
- The difference in milliseconds between the timestamp of when this event occurred and midnight, January 1, 1970 UTC.
-