Constructordojox.timing.Timer

dojo.require("dojox.timing._base");
defined in dojox/timing/_base.js

Timer object executes an "onTick()" method repeatedly at a specified interval. repeatedly at a given interval.

Usage

function (/*Integer*/ interval) (view source)
parametertypedescription
intervalIntegerInterval between function calls, in milliseconds.

Jump to PropertiesFunctionsBack to top

Method called every time the interval passes. Override to do something useful.
FunctionsetInterval(interval)
Reset the interval of a timer, whether running or not.
Start the timer ticking.
Functionstop()
Stop the timer.

Jump to FunctionsPropertiesBack to top

between function calls, in milliseconds.