Method: Qonfig::DataSet::Lock#initialize

Defined in:
lib/qonfig/data_set/lock.rb

#initializevoid

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.13.0



10
11
12
13
14
# File 'lib/qonfig/data_set/lock.rb', line 10

def initialize
  @access_lock = Mutex.new
  @definition_lock = Mutex.new
  @arbitary_lock = Mutex.new
end