Class: Resque::Plugins::AsyncDeliver::MailJob

Inherits:
Object
  • Object
show all
Defined in:
lib/resque/plugins/async_deliver/mail_job.rb

Class Method Summary collapse

Class Method Details

.perform(*args) ⇒ Object



7
8
9
10
# File 'lib/resque/plugins/async_deliver/mail_job.rb', line 7

def self.perform(*args)
  mailer, *invocation_args = Serializer.deserialize(*args)
  mailer.send(*invocation_args).deliver
end