Sha256: 0caf2ab0cc13faa75840adde611fab0862f15580b855b228aec9e805f17bf346

Contents?: true

Size: 1.16 KB

Versions: 40

Compression:

Stored size: 1.16 KB

Contents

require 'active_support/concurrency/share_lock'

module ActiveSupport #:nodoc:
  module Dependencies #:nodoc:
    class Interlock
      def initialize # :nodoc:
        @lock = ActiveSupport::Concurrency::ShareLock.new
      end

      def loading
        @lock.exclusive(purpose: :load, compatible: [:load], after_compatible: [:load]) do
          yield
        end
      end

      def unloading
        @lock.exclusive(purpose: :unload, compatible: [:load, :unload], after_compatible: [:load, :unload]) do
          yield
        end
      end

      def start_unloading
        @lock.start_exclusive(purpose: :unload, compatible: [:load, :unload])
      end

      def done_unloading
        @lock.stop_exclusive(compatible: [:load, :unload])
      end

      def start_running
        @lock.start_sharing
      end

      def done_running
        @lock.stop_sharing
      end

      def running
        @lock.sharing do
          yield
        end
      end

      def permit_concurrent_loads
        @lock.yield_shares(compatible: [:load]) do
          yield
        end
      end

      def raw_state(&block) # :nodoc:
        @lock.raw_state(&block)
      end
    end
  end
end

Version data entries

40 entries across 39 versions & 7 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/dependencies/interlock.rb
activesupport-5.0.7.2 lib/active_support/dependencies/interlock.rb
activesupport-5.0.7.1 lib/active_support/dependencies/interlock.rb
activesupport-5.0.7 lib/active_support/dependencies/interlock.rb
activesupport-5.0.6 lib/active_support/dependencies/interlock.rb
activesupport-5.0.6.rc1 lib/active_support/dependencies/interlock.rb
activesupport-5.0.5 lib/active_support/dependencies/interlock.rb
activesupport-5.0.5.rc2 lib/active_support/dependencies/interlock.rb
activesupport-5.0.5.rc1 lib/active_support/dependencies/interlock.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb
activesupport-5.0.4 lib/active_support/dependencies/interlock.rb
activesupport-5.0.4.rc1 lib/active_support/dependencies/interlock.rb
activesupport-5.0.3 lib/active_support/dependencies/interlock.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb
lazy_record-0.2.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb
lazy_record-0.2.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb
lazy_record-0.1.9 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb
lazy_record-0.1.8 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb
lazy_record-0.1.7 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb