通过Sidekiq将工作结果传递给其他工作

时间:2019-03-06 06:59:33

标签: ruby-on-rails sidekiq

我进行API调用以获取电子邮件地址。成功后,我想将此电子邮件地址传递给另一份工作。我使用 sidekiq sidekiq批量宝石。

class HandleWebhookJob
  def perform
    batch = Sidekiq::Batch.new
    batch.description = "Handling webhook"
    batch.on(:success, HandleWebhookJob::OtherJob, { email: @email })
    batch.jobs do
      @email = GetEmailJob.perform_async # returns email address
    end
  end

  class OtherJob
    def on_success(status, options)
      puts options # no email address here - nil
      # need to pass it to UseEmailJob.perfom_async(options[:email])
    end
  end
end

我认为将 GetEmailJob 的结果分配给 @email 无效。找不到如何执行此操作的示例,甚至可能的话。

1 个答案:

答案 0 :(得分:1)

我认为您在jid中得到了@email。 您是否可以使用GetEmailJob键将prefix:jid中的电子邮件保存到某个存储区(例如redis),然后从那里取出邮件?