# File lib/concurrent/synchronization/condition.rb, line 40 def broadcast @Lock.synchronize { ns_broadcast } end
# File lib/concurrent/synchronization/condition.rb, line 44 def ns_broadcast synchronize { super } end
# File lib/concurrent/synchronization/condition.rb, line 36 def ns_signal synchronize { super } end
# File lib/concurrent/synchronization/condition.rb, line 20 def ns_wait(timeout = nil) synchronize { super(timeout) } end
# File lib/concurrent/synchronization/condition.rb, line 28 def ns_wait_until(timeout = nil, &condition) synchronize { super(timeout, &condition) } end
# File lib/concurrent/synchronization/condition.rb, line 32 def signal @Lock.synchronize { ns_signal } end
Generated with the Darkfish Rdoc Generator 2.