Class: Delayed::Lifecycle

Inherits:
Object
  • Object
show all
Defined in:
lib/delayed/lifecycle.rb

Constant Summary collapse

EVENTS =
{
  :error            => [:worker, :job, :exception],
  :exceptional_exit => [:worker, :exception],
  :execute          => [:worker],
  :invoke_job       => [:job],
  :loop             => [:worker],
  :perform          => [:worker, :job],
  :pop              => [:worker],
  :retry            => [:worker, :job, :exception],
  :work_queue_pop   => [:work_queue, :worker_config],
  :check_for_work   => [:work_queue],
}

Instance Method Summary collapse

Constructor Details

#initializeLifecycle

Returns a new instance of Lifecycle.



20
21
22
# File 'lib/delayed/lifecycle.rb', line 20

def initialize
  reset!
end

Instance Method Details

#after(event, &block) ⇒ Object



33
34
35
# File 'lib/delayed/lifecycle.rb', line 33

def after(event, &block)
  add(:after, event, &block)
end

#around(event, &block) ⇒ Object



37
38
39
# File 'lib/delayed/lifecycle.rb', line 37

def around(event, &block)
  add(:around, event, &block)
end

#before(event, &block) ⇒ Object



29
30
31
# File 'lib/delayed/lifecycle.rb', line 29

def before(event, &block)
  add(:before, event, &block)
end

#reset!Object



24
25
26
27
# File 'lib/delayed/lifecycle.rb', line 24

def reset!
  @callbacks = EVENTS.keys.inject({}) { |hash, e| hash[e] = Callback.new; hash }
  Delayed::Worker.plugins.each { |plugin| plugin.reset! }
end

#run_callbacks(event, *args, &block) ⇒ Object



41
42
43
44
45
46
47
48
49
# File 'lib/delayed/lifecycle.rb', line 41

def run_callbacks(event, *args, &block)
  missing_callback(event) unless @callbacks.has_key?(event)

  unless EVENTS[event].size == args.size
    raise ArgumentError, "Callback #{event} expects #{EVENTS[event].size} parameter(s): #{EVENTS[event].join(', ')}"
  end

  @callbacks[event].execute(*args, &block)
end