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