Class: Denko::MutexStub

Inherits:
Object
  • Object
show all
Defined in:
lib/denko/helpers/mutex_stub.rb

Instance Method Summary collapse

Instance Method Details

#lockObject



7
8
# File 'lib/denko/helpers/mutex_stub.rb', line 7

def lock
end

#synchronize(&block) ⇒ Object



3
4
5
# File 'lib/denko/helpers/mutex_stub.rb', line 3

def synchronize(&block)
  block.call
end

#unlockObject



10
11
# File 'lib/denko/helpers/mutex_stub.rb', line 10

def unlock
end