The interface that must be implemented by objects which are to be invoked at scheduled times. Used by TimerService.repeatAfter(), TimerService.setWakeup(), and TimerRepeater.schedule().

interface TimerWaker {
    wake: ((timestamp: TimestampRecord) => void);
}

Properties

Properties

wake: ((timestamp: TimestampRecord) => void)

The timestamp passed to wake() is the time that the call was scheduled to occur.