This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

wait

        # MonitorMixin::ConditionVariable.wait

(from ruby core)
### Implementation from ConditionVariable
---
    wait(timeout = nil)

---

Releases the lock held in the associated monitor and waits; reacquires
the lock on wakeup.

If `timeout` is given, this method returns after `timeout` seconds
passed, even if no other thread doesn't signal.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.