class Object
Public Instance Methods
pb_logger()
click to toggle source
# File lib/adhearsion/foundation/object.rb, line 9 def pb_logger logger end
synchronize(&block)
click to toggle source
# File lib/adhearsion/foundation/thread_safety.rb, line 6 def synchronize(&block) @mutex ||= Mutex.new @mutex.synchronize(&block) end