Class: CI::Queue::Redis::Base::State
- Inherits:
-
Object
- Object
- CI::Queue::Redis::Base::State
- Defined in:
- lib/ci/queue/redis/base.rb
Instance Method Summary collapse
-
#initialize ⇒ State
constructor
A new instance of State.
- #set(*state) ⇒ Object
- #wait(timeout) ⇒ Object
Constructor Details
#initialize ⇒ State
Returns a new instance of State.
347 348 349 350 351 |
# File 'lib/ci/queue/redis/base.rb', line 347 def initialize @state = nil @mutex = Mutex.new @cond = ConditionVariable.new end |
Instance Method Details
#set(*state) ⇒ Object
353 354 355 356 357 358 |
# File 'lib/ci/queue/redis/base.rb', line 353 def set(*state) @state = state @mutex.synchronize do @cond.broadcast end end |
#wait(timeout) ⇒ Object
360 361 362 363 364 365 |
# File 'lib/ci/queue/redis/base.rb', line 360 def wait(timeout) @mutex.synchronize do @cond.wait(@mutex, timeout) end @state end |