Class: Blocker
Instance Method Summary collapse
-
#initialize ⇒ Blocker
constructor
A new instance of Blocker.
- #notify ⇒ Object
- #wait ⇒ Object
Constructor Details
#initialize ⇒ Blocker
Returns a new instance of Blocker.
4 5 6 7 |
# File 'lib/stratagem/blocker.rb', line 4 def initialize @mutex = Mutex.new @cv = ConditionVariable.new end |