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