Method: Proc#after

Defined in:
lib/reactive_record/interval.rb

#after(time) ⇒ Delay

Execute a block after the given seconds.

Parameters:

  • time (Float)

    the seconds after it gets called

Returns:

  • (Delay)

    the object representing the timeout



182
183
184
# File 'lib/reactive_record/interval.rb', line 182

def after(time)
  $window.after(time, &self)
end