Class: Que::Adapters::Pond

Inherits:
Base
  • Object
show all
Defined in:
lib/que/adapters/pond.rb

Instance Method Summary collapse

Methods inherited from Base

#execute, #in_transaction?, #wake_worker_after_commit

Constructor Details

#initialize(pond) ⇒ Pond

Returns a new instance of Pond.



4
5
6
7
# File 'lib/que/adapters/pond.rb', line 4

def initialize(pond)
  @pond = pond
  super
end

Instance Method Details

#checkout(&block) ⇒ Object



9
10
11
# File 'lib/que/adapters/pond.rb', line 9

def checkout(&block)
  @pond.checkout(&block)
end