Methods
A
N
Class Public methods
new(count = 1)
# 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
Instance Public methods
await()
# File activesupport/lib/active_support/concurrency/latch.rb, line 14
def await
  wait(nil)
end