method
await
v4.2.9 -
Show latest stable
- Class:
ActiveSupport::Concurrency::Latch
await()public
No documentation available.
# File activesupport/lib/active_support/concurrency/latch.rb, line 20
def await
@lock.synchronize do
@cv.wait_while { @count > 0 }
end
end