Class: Monitor
Overview
Use the Monitor class when you want to have a lock object for blocks with mutual exclusion.
require 'monitor'
lock = Monitor.new
lock.synchronize do
# exclusive access
end
Method Summary
Methods included from MonitorMixin
extend_object, #mon_enter, #mon_exit, #mon_synchronize, #mon_try_enter, #new_cond