Execute a block after the given seconds.
Parameters:
the seconds after it gets called
Returns:
the object representing the timeout
151 152 153
# File 'lib/reactive_record/interval.rb', line 151 def after(time, &block) Delay.new(@native, time, &block).tap(&:start) end