debian-mirror-gitlab/app/workers/reactive_caching_worker.rb
2019-05-30 16:15:17 +05:30

19 lines
430 B
Ruby

# frozen_string_literal: true
class ReactiveCachingWorker
include ApplicationWorker
# rubocop: disable CodeReuse/ActiveRecord
def perform(class_name, id, *args)
klass = begin
Kernel.const_get(class_name)
rescue NameError
nil
end
return unless klass
klass.find_by(klass.primary_key => id).try(:exclusively_update_reactive_cache!, *args)
end
# rubocop: enable CodeReuse/ActiveRecord
end