Sha256: 5eb731de9e5537cdea61e01db0e9f1d7b5bfba6f0be6cc09c7d7762a68566739

Contents?: true

Size: 648 Bytes

Versions: 40

Compression:

Stored size: 648 Bytes

Contents

require 'concurrent/atomic/count_down_latch'

module ActiveSupport
  module Concurrency
    class Latch

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

        @inner = Concurrent::CountDownLatch.new(count)
      end

      def release
        @inner.count_down
      end

      def await
        @inner.wait(nil)
      end
    end
  end
end

Version data entries

40 entries across 39 versions & 7 rubygems

Version Path
lazy_record-0.1.6 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb
lazy_record-0.1.4 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb
tdiary-5.0.4 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb
lazy_record-0.1.3 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb
lazy_record-0.1.2 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb
lazy_record-0.1.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb
lazy_record-0.1.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb
activesupport-5.0.2 lib/active_support/concurrency/latch.rb
activesupport-5.0.2.rc1 lib/active_support/concurrency/latch.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
abaci-0.3.0 vendor/bundle/gems/activesupport-5.0.1/lib/active_support/concurrency/latch.rb
activesupport-5.0.1 lib/active_support/concurrency/latch.rb
activesupport-5.0.1.rc2 lib/active_support/concurrency/latch.rb
activesupport-5.0.1.rc1 lib/active_support/concurrency/latch.rb