Class: ReentrantMutex
- Inherits:
-
Mutex
- Object
- Mutex
- ReentrantMutex
- Defined in:
- lib/logging/utils.rb
Overview
Instance Method Summary collapse
-
#initialize ⇒ ReentrantMutex
constructor
A new instance of ReentrantMutex.
- #original_synchronize ⇒ Object
- #synchronize ⇒ Object
Constructor Details
#initialize ⇒ ReentrantMutex
Returns a new instance of ReentrantMutex.
148 149 150 151 |
# File 'lib/logging/utils.rb', line 148 def initialize super @locker = nil end |
Instance Method Details
#original_synchronize ⇒ Object
153 |
# File 'lib/logging/utils.rb', line 153 alias_method :original_synchronize, :synchronize |