FIXME: This isn’t documented in Nutshell.
Create a new condition variable for this monitor. This facilitates control of the monitor with #signal and #wait.
Source Code
# File monitor.rb, line 255 def new_cond return ConditionVariable.new(self) end
FIXME: This isn’t documented in Nutshell.
Create a new condition variable for this monitor. This facilitates control of the monitor with #signal and #wait.
# File monitor.rb, line 255 def new_cond return ConditionVariable.new(self) end
<code/>and<pre/>for code samples.