class ActiveSupport::Concurrency::Latch

def await

def await
  wait(nil)
end

def initialize(count = 1)

def initialize(count = 1)
  ActiveSupport::Deprecation.warn("ActiveSupport::Concurrency::Latch is deprecated. Please use Concurrent::CountDownLatch instead.")
  super(count)
end