Skip to content

Commit 06fb3db

Browse files
committedJan 21, 2014
interval: cleanup code and documentation
1 parent 4ea7af1 commit 06fb3db

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed
 

‎opal/browser/interval.rb

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
module Browser
22

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
47
class Interval
58
# @!attribute [r] every
69
# @return [Number] the seconds every which the block is called
@@ -32,20 +35,14 @@ def aborted?
3235
end
3336

3437
# Abort the interval, it won't be possible to start it again.
35-
#
36-
# @return [self]
3738
def abort
3839
`#@window.clearInterval(#@id)`
3940

4041
@aborted = true
4142
@id = nil
42-
43-
self
4443
end
4544

4645
# Stop the interval, it will be possible to start it again.
47-
#
48-
# @return [self]
4946
def stop
5047
`#@window.clearInterval(#@id)`
5148

@@ -54,23 +51,20 @@ def stop
5451
end
5552

5653
# Start the interval if it has been stopped.
57-
#
58-
# @return [self]
5954
def start
6055
raise "the interval has been aborted" if aborted?
6156

6257
return unless stopped?
6358

6459
@id = `#@window.setInterval(#{@block.to_n}, #@every * 1000)`
65-
66-
self
6760
end
6861
end
6962

7063
class Window
7164
# Execute the block every given seconds.
7265
#
7366
# @param time [Float] the seconds between every call
67+
#
7468
# @return [Interval] the object representing the interval
7569
def every(time, &block)
7670
Interval.new(@native, time, &block)
@@ -80,6 +74,7 @@ def every(time, &block)
8074
end
8175

8276
class Proc
77+
# (see Browser::Window#every)
8378
def every(time)
8479
$window.every(time, &self)
8580
end

0 commit comments

Comments
 (0)
Please sign in to comment.