Class: Monitor

Inherits:
Object
  • Object
show all
Includes:
MonitorMixin
Defined in:
lib/monitor.rb

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