Class: ReentrantMutex

Inherits:
Mutex
  • Object
show all
Defined in:
lib/logging/utils.rb

Overview


Instance Method Summary collapse

Constructor Details

#initializeReentrantMutex

Returns a new instance of ReentrantMutex.



208
209
210
211
# File 'lib/logging/utils.rb', line 208

def initialize
  super
  @locker = nil
end

Instance Method Details

#original_synchronizeObject



213
# File 'lib/logging/utils.rb', line 213

alias :original_synchronize :synchronize

#synchronizeObject



215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/logging/utils.rb', line 215

def synchronize
  if @locker == Thread.current
    yield
  else
    original_synchronize {
      begin
        @locker = Thread.current
        yield
      ensure
        @locker = nil
      end
    }
  end
end