Method: MonitorMixin::ConditionVariable#signal

Defined in:
lib/monitor.rb

#signalObject

Wakes up the first thread in line waiting for this lock.



132
133
134
135
# File 'lib/monitor.rb', line 132

def signal
  @monitor.mon_check_owner
  @cond.signal
end