com.intel.util
Interface TimerClient
public interface TimerClient
This interface should be implemented by applet while creating a TimerManager.Timer
in order to receive timer ticks notification.
Method Summary | |
---|---|
void |
onTimerTick(byte[] userData)
This method will be invoked by system when the timer, for which this client was registered, expires. |
Method Detail |
---|
onTimerTick
void onTimerTick(byte[] userData)
- This method will be invoked by system when the timer, for which this client was registered, expires.
- Parameters:
userData
- the data that was provided when calling thestart
method of the timer.