dojox.timing.Streamer
dojo.require("dojox.timing.Streamer");
defined in dojox/timing/Streamer.js
Streamer will take an input function that pushes N datapoints into a queue, and will pass the next point in that queue out to an
Usage
parameter | type | description |
---|---|---|
input | Function | the function executed when the internal queue reaches minimumSize |
output | Function | the function executed on internal tick |
interval | Integer | the interval in ms at which the output function is fired. |
minimum | Integer | the minimum number of elements in the internal queue. |
initialData | Array |
FunctionsBack to top


sets the interval in milliseconds of the internal timer

starts the Streamer

stops the Streamer