Method: Browser::Window#after!

Defined in:
lib/reactive_record/interval.rb

#after!(time, &block) ⇒ Delay

Execute a block after the given seconds, you have to call [#start] on it yourself.

Parameters:

  • time (Float)

    the seconds after it gets called

Returns:

  • (Delay)

    the object representing the timeout



161
162
163
# File 'lib/reactive_record/interval.rb', line 161

def after!(time, &block)
  Delay.new(@native, time, &block)
end