Timeout Scheduler (JavaScript)
loop{
var tmpRunnableObject = new RunnableObject();
tmpRunnableObject.var = value;
tmpRunnableObject.run = function(){ // Required
// TODO: Action with this.var;
};
TimeoutScheduler.addJob(tmpRunnableObject, timeout);
}
|
Portfolio >