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.
206 207 208 209 |
# File 'lib/logging/utils.rb', line 206 def initialize super @locker = nil end |
Instance Method Details
#original_synchronize ⇒ Object
211 |
# File 'lib/logging/utils.rb', line 211 alias :original_synchronize :synchronize |
#synchronize ⇒ Object
213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/logging/utils.rb', line 213 def synchronize if @locker == Thread.current yield else original_synchronize { begin @locker = Thread.current yield ensure @locker = nil end } end end |