Skip to content

Commit 634dbf9

Browse files
committedJan 21, 2014
immediate: cleanup and add documentation
1 parent 677cad5 commit 634dbf9

File tree

3 files changed

+50
-11
lines changed

3 files changed

+50
-11
lines changed
 

‎opal/browser/compatibility/immediate.rb

+3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ def prevent
5151
`window.msClearImmediate(#@id)`
5252
end
5353
elsif C.post_message?
54+
# @private
5455
@@tasks = {}
56+
57+
# @private
5558
@@prefix = "opal.browser.immediate.#{rand(1_000_000)}."
5659

5760
$window.on :message do |e|

‎opal/browser/immediate.rb

+38-4
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,54 @@
11
require 'promise'
22

3-
require 'browser/compatibility/immediate'
4-
53
module Browser
64

7-
# FIXME: drop the method_defined? checks when require order is fixed
5+
# Class to easily create and dispatch an immediate call.
6+
#
7+
# Immediate calls are deferred function calls that happen as soon as they can
8+
# be scheduled.
9+
#
10+
# Compatibility
11+
# -------------
12+
# The compatibility layer will try various implementations in the following
13+
# order.
14+
#
15+
# + [setImmediate](https://developer.mozilla.org/en-US/docs/Web/API/Window.setImmediate)
16+
# + [postMessage](https://developer.mozilla.org/en-US/docs/Web/API/Window.postMessage)
17+
# + [readystatechange](https://developer.mozilla.org/en-US/docs/Web/Reference/Events/readystatechange)
18+
# + [setTimeout](https://developer.mozilla.org/en/docs/Web/API/window.setTimeout)
19+
#
20+
# The order has been chosen from best to worst for both performance and
21+
# preemptiveness.
22+
#
23+
# @todo drop the method_defined? checks when require order is fixed
824
class Immediate
25+
# Create an immediate for the given function which will be called with the
26+
# arguments and block.
27+
#
28+
# @param func [Proc] the function to call
29+
# @param args [Array] the arguments to call it with
930
def initialize(func, args, &block)
1031
@aborted = false
1132
@function = func
1233
@arguments = args
1334
@block = block
1435
end
1536

37+
# Dispatch the immediate.
38+
#
39+
# @abstract
1640
def dispatch
1741
raise NotImplementedError
1842
end unless method_defined? :dispatch
1943

44+
# Prevent the immediate from being called once scheduled.
45+
#
46+
# @abstract
2047
def prevent
2148
raise NotImplementedError
2249
end unless method_defined? :prevent
2350

51+
# Abort the immediate.
2452
def abort
2553
return if aborted?
2654

@@ -30,6 +58,7 @@ def abort
3058
self
3159
end
3260

61+
# Check if the immediate has been aborted.
3362
def aborted?
3463
@aborted
3564
end
@@ -38,13 +67,16 @@ def aborted?
3867
end
3968

4069
class Proc
41-
# Defer the function to be called as soon as possible.
70+
# (see Immediate.new)
4271
def defer(*args, &block)
4372
Browser::Immediate.new(self, args, &block).tap(&:dispatch)
4473
end
4574
end
4675

4776
class Promise
77+
# Create a promise which will be resolved with the result of the immediate.
78+
#
79+
# @param args [Array] the arguments the block will be called with
4880
def self.defer(*args, &block)
4981
new.tap {|promise|
5082
proc {
@@ -57,3 +89,5 @@ def self.defer(*args, &block)
5789
}
5890
end
5991
end
92+
93+
require 'browser/compatibility/immediate'

‎spec/immediate_spec.rb

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
require 'spec_helper'
22
require 'browser/immediate'
33

4-
describe Browser::Immediate do
5-
async 'defers a proc' do
6-
proc {|a|
7-
run_async {
8-
a.should == 42
9-
}
10-
}.defer(42)
4+
describe Proc do
5+
describe '#defer' do
6+
async 'works properly' do
7+
proc {|a|
8+
run_async {
9+
a.should == 42
10+
}
11+
}.defer(42)
12+
end
1113
end
1214
end

0 commit comments

Comments
 (0)
Please sign in to comment.