1
1
module Browser
2
2
3
- # This class wraps `setInterval`.
3
+ # Allows you to create an interval that executes the function every given
4
+ # seconds.
5
+ #
6
+ # @see https://developer.mozilla.org/en-US/docs/Web/API/Window.setInterval
4
7
class Interval
5
8
# @!attribute [r] every
6
9
# @return [Number] the seconds every which the block is called
@@ -32,20 +35,14 @@ def aborted?
32
35
end
33
36
34
37
# Abort the interval, it won't be possible to start it again.
35
- #
36
- # @return [self]
37
38
def abort
38
39
`#@window .clearInterval(#@id )`
39
40
40
41
@aborted = true
41
42
@id = nil
42
-
43
- self
44
43
end
45
44
46
45
# Stop the interval, it will be possible to start it again.
47
- #
48
- # @return [self]
49
46
def stop
50
47
`#@window .clearInterval(#@id )`
51
48
@@ -54,23 +51,20 @@ def stop
54
51
end
55
52
56
53
# Start the interval if it has been stopped.
57
- #
58
- # @return [self]
59
54
def start
60
55
raise "the interval has been aborted" if aborted?
61
56
62
57
return unless stopped?
63
58
64
59
@id = `#@window .setInterval(#{ @block . to_n } , #@every * 1000)`
65
-
66
- self
67
60
end
68
61
end
69
62
70
63
class Window
71
64
# Execute the block every given seconds.
72
65
#
73
66
# @param time [Float] the seconds between every call
67
+ #
74
68
# @return [Interval] the object representing the interval
75
69
def every ( time , &block )
76
70
Interval . new ( @native , time , &block )
@@ -80,6 +74,7 @@ def every(time, &block)
80
74
end
81
75
82
76
class Proc
77
+ # (see Browser::Window#every)
83
78
def every ( time )
84
79
$window. every ( time , &self )
85
80
end
0 commit comments