1
1
require 'promise'
2
2
3
- require 'browser/compatibility/immediate'
4
-
5
3
module Browser
6
4
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
8
24
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
9
30
def initialize ( func , args , &block )
10
31
@aborted = false
11
32
@function = func
12
33
@arguments = args
13
34
@block = block
14
35
end
15
36
37
+ # Dispatch the immediate.
38
+ #
39
+ # @abstract
16
40
def dispatch
17
41
raise NotImplementedError
18
42
end unless method_defined? :dispatch
19
43
44
+ # Prevent the immediate from being called once scheduled.
45
+ #
46
+ # @abstract
20
47
def prevent
21
48
raise NotImplementedError
22
49
end unless method_defined? :prevent
23
50
51
+ # Abort the immediate.
24
52
def abort
25
53
return if aborted?
26
54
@@ -30,6 +58,7 @@ def abort
30
58
self
31
59
end
32
60
61
+ # Check if the immediate has been aborted.
33
62
def aborted?
34
63
@aborted
35
64
end
@@ -38,13 +67,16 @@ def aborted?
38
67
end
39
68
40
69
class Proc
41
- # Defer the function to be called as soon as possible.
70
+ # (see Immediate.new)
42
71
def defer ( *args , &block )
43
72
Browser ::Immediate . new ( self , args , &block ) . tap ( &:dispatch )
44
73
end
45
74
end
46
75
47
76
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
48
80
def self . defer ( *args , &block )
49
81
new . tap { |promise |
50
82
proc {
@@ -57,3 +89,5 @@ def self.defer(*args, &block)
57
89
}
58
90
end
59
91
end
92
+
93
+ require 'browser/compatibility/immediate'
0 commit comments