4

我正在尝试使用delayed_jobs(后台工作人员)来处理我收到的电子邮件。

class EmailProcessor

  def initialize(email)
    @raw_html = email.raw_html
    @subject = email.subject
  end

  def process
    do something with @raw_html & @subject
  end
  handle_asynchronously :process, :priority => 20

end

问题是我无法将实例变量(@raw_html 和@subject)传递给延迟的作业。延迟作业请求我将数据保存到模型中以在后台任务中检索,但我希望让后台工作人员完成整个任务(包括保存记录)。

有什么想法吗?

4

1 回答 1

1

用于delay将参数传递给要在后台运行的方法:

class EmailProcessor

  def self.process(email)
    # do something with the email
  end
end

# Then somewhere down the line:

EmailProcessor.delay.process(email)
于 2016-07-28T12:33:23.273 回答