Files

Class/Module Index [+]

Quicksearch

Concurrent::Synchronization::Lock

Public Instance Methods

broadcast() click to toggle source
# File lib/concurrent/synchronization/lock.rb, line 25
def broadcast
  synchronize { ns_broadcast }
end
signal() click to toggle source
# File lib/concurrent/synchronization/lock.rb, line 19
def signal
  synchronize { ns_signal }
end
wait(timeout = nil) click to toggle source
# File lib/concurrent/synchronization/lock.rb, line 7
def wait(timeout = nil)
  synchronize { ns_wait(timeout) }
end
wait_until(timeout = nil, &condition) click to toggle source
# File lib/concurrent/synchronization/lock.rb, line 13
def wait_until(timeout = nil, &condition)
  synchronize { ns_wait_until(timeout, &condition) }
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.