method
wait_for
v6.1.7.7 -
Show latest stable
- Class:
ActiveSupport::Concurrency::ShareLock
wait_for(method)private
No documentation available.
# File activesupport/lib/active_support/concurrency/share_lock.rb, line 218
def wait_for(method)
@sleeping[Thread.current] = method
@cv.wait_while { yield }
ensure
@sleeping.delete Thread.current
end