0
임의의 만료 시간을 EACH 반복하고 싶습니다. 이 예제는 만료 시간을 5 ~ 15 초 사이에서 무작위로 추출하여 영원히 사용합니다.TimerManager 임의의 recurTime
var timer = qx.util.TimerManager.getInstance();
timer.start(function(userData, timerId)
{
this.debug("timer tick");
},
(Math.floor(Math.random()*11)*1000) + 5000,
this,
null,
0
);
나는 또한 순수 JS 솔루션을 허용합니다.
http://demo.qooxdoo.org/current/apiviewer/#qx.util.TimerManager