Час очікування був досить легким, щоб знайти рішення, але інтервал був дещо складнішим.
Я вирішив наступні два класи, щоб вирішити цю проблему:
function PauseableTimeout(func, delay){
this.func = func;
var _now = new Date().getTime();
this.triggerTime = _now + delay;
this.t = window.setTimeout(this.func,delay);
this.paused_timeLeft = 0;
this.getTimeLeft = function(){
var now = new Date();
return this.triggerTime - now;
}
this.pause = function(){
this.paused_timeLeft = this.getTimeLeft();
window.clearTimeout(this.t);
this.t = null;
}
this.resume = function(){
if (this.t == null){
this.t = window.setTimeout(this.func, this.paused_timeLeft);
}
}
this.clearTimeout = function(){ window.clearTimeout(this.t);}
}
function PauseableInterval(func, delay){
this.func = func;
this.delay = delay;
this.triggerSetAt = new Date().getTime();
this.triggerTime = this.triggerSetAt + this.delay;
this.i = window.setInterval(this.func, this.delay);
this.t_restart = null;
this.paused_timeLeft = 0;
this.getTimeLeft = function(){
var now = new Date();
return this.delay - ((now - this.triggerSetAt) % this.delay);
}
this.pause = function(){
this.paused_timeLeft = this.getTimeLeft();
window.clearInterval(this.i);
this.i = null;
}
this.restart = function(sender){
sender.i = window.setInterval(sender.func, sender.delay);
}
this.resume = function(){
if (this.i == null){
this.i = window.setTimeout(this.restart, this.paused_timeLeft, this);
}
}
this.clearInterval = function(){ window.clearInterval(this.i);}
}
Вони можуть бути реалізовані як такі:
var pt_hey = new PauseableTimeout(function(){
alert("hello");
}, 2000);
window.setTimeout(function(){
pt_hey.pause();
}, 1000);
window.setTimeout("pt_hey.start()", 2000);
Цей приклад встановить призупинений час очікування (pt_hey), який планується попередити "ей" через дві секунди. Ще один тайм-аут призупиняє pt_hey через одну секунду. Третій час очікування поновлюється pt_hey через дві секунди. pt_hey працює протягом однієї секунди, робить паузу на одну секунду, після чого продовжує працювати. pt_hey спрацьовує через три секунди.
Тепер про складніші інтервали
var pi_hey = new PauseableInterval(function(){
console.log("hello world");
}, 2000);
window.setTimeout("pi_hey.pause()", 5000);
window.setTimeout("pi_hey.resume()", 6000);
Цей приклад встановлює паузальний інтервал (pi_hey), щоб писати "привіт світ" кожні дві секунди. Час очікування призупиняє pi_hey через п’ять секунд. Ще один тайм-аут поновлюється pi_hey через шість секунд. Так pi_hey запустить двічі, запустити одну секунду, зробити паузу на одну секунду, запустити одну секунду, а потім продовжувати ініціювати кожні 2 секунди.
ІНШІ ФУНКЦІЇ
clearTimeout () та clearInterval ()
pt_hey.clearTimeout();
і pi_hey.clearInterval();
служать простим способом очищення тайм-аутів та інтервалів.
getTimeLeft ()
pt_hey.getTimeLeft();
і pi_hey.getTimeLeft();
поверне скільки мілісекунд до наступного тригеру, як заплановано.