Method: MonitorMixin::ConditionVariable#broadcast
- Defined in:
- lib/monitor.rb
#broadcast ⇒ Object
Wakes up all threads waiting for this lock.
140 141 142 143 |
# File 'lib/monitor.rb', line 140 def broadcast @monitor.mon_check_owner @cond.broadcast end |