我进行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 无效。找不到如何执行此操作的示例,甚至可能的话。
答案 0 :(得分:1)
我认为您在jid
中得到了@email
。
您是否可以使用GetEmailJob
键将prefix:jid
中的电子邮件保存到某个存储区(例如redis),然后从那里取出邮件?