Class: Proc
- Defined in:
- opal/browser/delay.rb,
opal/browser/interval.rb,
opal/browser/immediate.rb,
opal/browser/animation_frame.rb more...
Instance Method Summary collapse
-
#after(time) ⇒ Delay
Execute a block after the given seconds.
-
#after!(time) ⇒ Delay
Execute a block after the given seconds, you have to call [#start] on it yourself.
- #animation_frame ⇒ Object
- #defer(*args, &block) ⇒ Object
-
#every(time) ⇒ Interval
Execute the block every given seconds.
-
#every!(time) ⇒ Interval
Execute the block every given seconds, you have to call [#start] on it yourself.
Instance Method Details
permalink #after(time) ⇒ Delay
Execute a block after the given seconds.
87 88 89 |
# File 'opal/browser/delay.rb', line 87 def after(time) $window.after(time, &self) end |
permalink #after!(time) ⇒ Delay
Execute a block after the given seconds, you have to call [#start] on it yourself.
92 93 94 |
# File 'opal/browser/delay.rb', line 92 def after!(time) $window.after!(time, &self) end |
permalink #animation_frame ⇒ Object
[View source]
109 110 111 |
# File 'opal/browser/animation_frame.rb', line 109 def animation_frame Browser::AnimationFrame.new($window, &self) end |
permalink #defer(*args, &block) ⇒ Object
[View source]
142 143 144 |
# File 'opal/browser/immediate.rb', line 142 def defer(*args, &block) Browser::Immediate.new(self, args, &block).tap(&:dispatch) end |
permalink #every(time) ⇒ Interval
Execute the block every given seconds.
104 105 106 |
# File 'opal/browser/interval.rb', line 104 def every(time) $window.every(time, &self) end |
permalink #every!(time) ⇒ Interval
Execute the block every given seconds, you have to call [#start] on it yourself.
109 110 111 |
# File 'opal/browser/interval.rb', line 109 def every!(time) $window.every!(time, &self) end |