Method: MonitorMixin::ConditionVariable#wait_while

Defined in:
lib/monitor.rb

#wait_whileObject

Calls wait repeatedly while the given block yields a truthy value.



114
115
116
117
118
# File 'lib/monitor.rb', line 114

def wait_while
  while yield
    wait
  end
end