Class: Rails::Application::Finisher::MutexHook
- Inherits:
-
Object
- Object
- Rails::Application::Finisher::MutexHook
- Defined in:
- lib/rails/application/finisher.rb
Instance Method Summary collapse
- #complete(_state) ⇒ Object
-
#initialize(mutex = Mutex.new) ⇒ MutexHook
constructor
A new instance of MutexHook.
- #run ⇒ Object
Constructor Details
#initialize(mutex = Mutex.new) ⇒ MutexHook
Returns a new instance of MutexHook.
79 80 81 |
# File 'lib/rails/application/finisher.rb', line 79 def initialize(mutex = Mutex.new) @mutex = mutex end |
Instance Method Details
#complete(_state) ⇒ Object
87 88 89 |
# File 'lib/rails/application/finisher.rb', line 87 def complete(_state) @mutex.unlock end |
#run ⇒ Object
83 84 85 |
# File 'lib/rails/application/finisher.rb', line 83 def run @mutex.lock end |