Method: Proc#when

Defined in:
lib/rmtools/core/proc.rb

#whenObject



9
10
11
12
13
14
# File 'lib/rmtools/core/proc.rb', line 9

def when
  Thread.new do
    sleep 0.001 until yield
    call
  end
end