public interface EventTimerListener
Customer programs implement this interface to respond to timer events.
Programs instantiate their listener implementation classes, and may store closure data in fields of the instances.
| Modifier and Type | Method and Description |
|---|---|
void |
timerFired(EventTimer timer,
EventQueue eventQueue)
Timer event callback.
|
void timerFired(EventTimer timer, EventQueue eventQueue)
Programs implement this callback method to process timer events.
When a dispatch method dispatches a timer event, it notifies the timer's listener object, invoking this callback method.
Programs must not dispatch any event queue from within any callback.
timer - The callback responds to this timer event.eventQueue - The timer event was dispatched from this event queue.