class Rollbar::Delay::Resque::Job
Attributes
Public Class Methods
Source
# File lib/rollbar/delay/resque.rb, line 21 def self.perform(payload) new.perform(payload) end
Public Instance Methods
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