method
new
rails latest stable - Class:
ActiveSupport::Concurrency::Latch
new(count = 1)public
No documentation available.
# 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