Concurrent::Synchronization::Object
# File lib/concurrent/synchronization/lock.rb, line 25 def broadcast synchronize { ns_broadcast } end
# File lib/concurrent/synchronization/lock.rb, line 19 def signal synchronize { ns_signal } end
# File lib/concurrent/synchronization/lock.rb, line 7 def wait(timeout = nil) synchronize { ns_wait(timeout) } end
# 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.