org.elkoserver.foundation.timer
Interface TimeoutNoticer


public interface TimeoutNoticer

Interface implemented by objects that wish to be informed about Timeout events. A Timeout is created by calling the Timer.after() method and passing it an object that implements this TimeoutNoticer interface. The noticeTimeout() method of the TimeoutNoticer object will be invoked after the indicated interval.

See Also:
Timer.after(), Timeout

Method Summary
 void noticeTimeout()
          Notification of a timeout event.
 

Method Detail

noticeTimeout

void noticeTimeout()
Notification of a timeout event.