Method: Timeouter.loop!

Defined in:
lib/timeouter.rb

.loop!(timeout = 0, eclass: Timeouter::TimeoutError, message: 'execution expired', &block) ⇒ Object

[View source]

18
19
20
# File 'lib/timeouter.rb', line 18

def loop!(timeout = 0, eclass: Timeouter::TimeoutError, message: 'execution expired', &block)
  Timeouter::Timer.new(timeout, eclass: eclass, message: message).loop!(&block)
end