2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-06 11:05:03 +00:00
|
|
|
class DistributionWorker
|
2016-03-25 02:22:26 +00:00
|
|
|
include Sidekiq::Worker
|
2022-04-28 15:47:34 +00:00
|
|
|
include Redisable
|
2022-05-12 22:02:35 +00:00
|
|
|
include Lockable
|
2016-03-25 02:22:26 +00:00
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
def perform(status_id, options = {})
|
2022-05-12 22:02:35 +00:00
|
|
|
with_lock("distribute:#{status_id}") do
|
|
|
|
FanOutOnWriteService.new.call(Status.find(status_id), **options.symbolize_keys)
|
2019-03-16 19:18:47 +00:00
|
|
|
end
|
2016-12-19 08:31:12 +00:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2017-05-06 11:05:03 +00:00
|
|
|
true
|
2016-03-25 02:22:26 +00:00
|
|
|
end
|
|
|
|
end
|