class Rollbar::Delay::Resque::Job

Attributes

queue[RW]

Public Class Methods

perform(payload) click to toggle source
# File lib/rollbar/delay/resque.rb, line 21
def self.perform(payload)
  new.perform(payload)
end

Public Instance Methods

perform(payload) click to toggle source
# File lib/rollbar/delay/resque.rb, line 25
def perform(payload)
  Rollbar.process_from_async_handler(payload)

  # Do not rescue. Resque will call the error handler.
end