Zaman Aşımı bir çözüm bulmak için yeterince kolaydı, ancak Aralık biraz daha yanıltıcıydı.
Bu sorunları çözmek için aşağıdaki iki sınıfı buldum:
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);}
}
Bunlar şu şekilde uygulanabilir:
var pt_hey = new PauseableTimeout(function(){
alert("hello");
}, 2000);
window.setTimeout(function(){
pt_hey.pause();
}, 1000);
window.setTimeout("pt_hey.start()", 2000);
Bu örnek, iki saniye sonra "hey" uyarısı vermek üzere planlanan duraklatılabilir bir Zaman Aşımı (pt_hey) ayarlayacaktır. Başka bir Zaman Aşımı, bir saniye sonra pt_hey'i duraklatır. Üçüncü bir Zaman Aşımı, iki saniye sonra pt_hey'e devam eder. pt_hey bir saniye çalışır, bir saniye duraklatır, ardından çalışmaya devam eder. pt_hey, üç saniye sonra tetiklenir.
Şimdi daha zorlu aralıklar için
var pi_hey = new PauseableInterval(function(){
console.log("hello world");
}, 2000);
window.setTimeout("pi_hey.pause()", 5000);
window.setTimeout("pi_hey.resume()", 6000);
Bu örnek, konsolda her iki saniyede bir "merhaba dünya" yazmak için duraklatılabilir bir Aralık (pi_hey) ayarlar. Bir zaman aşımı, beş saniye sonra pi_hey'i duraklatır. Başka bir zaman aşımı, altı saniye sonra pi_hey'e devam eder. Böylece pi_hey iki kez tetiklenecek, bir saniye çalışacak, bir saniye duraklayacak, bir saniye çalışacak ve ardından her 2 saniyede bir tetiklemeye devam edecektir.
DİĞER FONKSİYONLAR
clearTimeout () ve clearInterval ()
pt_hey.clearTimeout();
ve pi_hey.clearInterval();
zaman aşımlarını ve aralıkları temizlemenin kolay bir yolu olarak hizmet eder.
getTimeLeft ()
pt_hey.getTimeLeft();
ve pi_hey.getTimeLeft();
sonraki tetikleyicinin gerçekleşmesi planlanan kaç milisaniye kadar dönecektir.