forked from glaszig/snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperiodical-timer.js
96 lines (87 loc) · 1.86 KB
/
periodical-timer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
* Periodical timer class
*
* this class lets you periodically execute an arbitrary function.
* additionally, you can start, stop and resume the time.
*
* Usage:
* ------
*
* var timer = new Timer(3000);
* timer.start(function(timeout) {
* console.log('executing timed function after '+timeout+' msec');
* });
*
* timer.stop(); // stops the timer
* timer.resume(); // continues the timer
* timer.replace(anotherFunction); // replaces the executed function with anotherFunction
* timer.timeout(5000); // sets the timeout to 5 seconds
*
*
* REPORT BUGS, PLEASE!
*
* @author glaszig at gmail dot com
*
*/
(function() {
/**
* the constructor
*
* @param Number the timeout in miliseconds
* @return Object Instance of the timer
*/
var Timer = function(t) {
this._timeout = t;
this._timer = null;
this._func = null;
}
/**
* start's the timer
*
* @param Function the function to run
* @return void
*/
Timer.prototype.start = function(func) {
var _self = this;
_self._func = func;
var _callee = arguments.callee;
this._timer = setTimeout(function() {
func(_self._timeout); _callee.call(_self, func);
}, _self._timeout);
}
/**
* stops the timer
*
* @return void
*/
Timer.prototype.stop = function() {
clearTimeout(this._timer);
}
/**
* resumes the timer
*
* @return void
*/
Timer.prototype.resume = function() {
return this.start(this._func);
}
/**
* sets the timeout to t miliseconds
*
* @param Number the timeout in miliseconds
* @return void
*/
Timer.prototype.timeout = function(t) {
this._timeout = t;
}
/**
* replaces the running function with func
*
* @param Function the function to run
* @return void
*/
Timer.prototype.replace = function(func) {
this._func = func;
}
window.Timer = Timer;
})();