Core.Web.Scheduler
MethodRunnable
Class Hierarchy:

A runnable task implementation that invokes a function at regular intervals.

Constructor Summary
Public Core.Web.Scheduler.MethodRunnable()
Creates a new Runnable.

Instance Field Summary
Public f
The function to invoke.

Instance Method Summary
Public, Virtual run()
Default run() implementation.

Methods inherited from class Core.Web.Scheduler.Runnable
run

Constructor Detail
Core.Web.Scheduler.Runnable()
Creates a new Runnable.
Parameters:
time (Number) - the time interval, in milliseconds, after which the Runnable should be executed (may be null/undefined to execute task immediately, in such cases repeat must be false)
repeat (Boolean) - a flag indicating whether the task should be repeated
f (Function) - a function to invoke, may be null/undefined

Instance Method Detail
run
Default run() implementation. Should be overridden by subclasses.