Source: show | on GitHub
# File activesupport/lib/active_support/dependencies/interlock.rb, line 36 def done_running @lock.stop_sharing end
# File activesupport/lib/active_support/dependencies/interlock.rb, line 28 def done_unloading @lock.stop_exclusive(compatible: [:load, :unload]) end
# File activesupport/lib/active_support/dependencies/interlock.rb, line 12 def loading @lock.exclusive(purpose: :load, compatible: [:load], after_compatible: [:load]) do yield end end
# File activesupport/lib/active_support/dependencies/interlock.rb, line 46 def permit_concurrent_loads @lock.yield_shares(compatible: [:load]) do yield end end
# File activesupport/lib/active_support/dependencies/interlock.rb, line 40 def running @lock.sharing do yield end end
# File activesupport/lib/active_support/dependencies/interlock.rb, line 32 def start_running @lock.start_sharing end
# File activesupport/lib/active_support/dependencies/interlock.rb, line 24 def start_unloading @lock.start_exclusive(purpose: :unload, compatible: [:load, :unload]) end
# File activesupport/lib/active_support/dependencies/interlock.rb, line 18 def unloading @lock.exclusive(purpose: :unload, compatible: [:load, :unload], after_compatible: [:load, :unload]) do yield end end