Source: show | on GitHub
# File activesupport/lib/active_support/concurrency/latch.rb, line 7 def initialize(count = 1) ActiveSupport::Deprecation.warn("ActiveSupport::Concurrency::Latch is deprecated. Please use Concurrent::CountDownLatch instead.") super(count) end
# File activesupport/lib/active_support/concurrency/latch.rb, line 14 def await wait(nil) end