Runner
The runner component will execute a supplied function either once or at a given interval.
Options
- active |
boolean
: controls whether the runner should be active. Upon activation, theonEvaluate
function is called in the given interval (or once). Default:true
. - interval |
number
: number of milliseconds between invocations ofonEvaluate
. If no interval is set, the function is only invoked once. Default:none
. - onEvaluate |
function
: function to be invoked. Default:onEvaluate() {}
.
Examples
Live Editor
Result
ReferenceError: Provider is not defined