Flowdock
method

new

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: Latch
new(count = 1) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/concurrency/latch.rb, line 7
      def initialize(count = 1)
        @count = count
        @lock = Monitor.new
        @cv = @lock.new_cond
      end
Register or log in to add new notes.