module Resque::Reports::Extensions::EventTemplates

Defines base event handling methods for Resque::Reports::EventCallbacks

Public Instance Methods

error_message(e) click to toggle source

Specifies error message generation Can be overridden in successors

# File lib/resque/reports/extensions/event_templates.rb, line 16
def error_message(e)
  fail e
end
progress_message(p, t) click to toggle source

Specifies progress message generation Can be overridden in successors

# File lib/resque/reports/extensions/event_templates.rb, line 10
def progress_message(p, t)
  nil
end