summaryrefslogtreecommitdiff
path: root/lib/gitlab/sidekiq_config/dummy_worker.rb
blob: ef0dce0cf84ae1a9133b9da38759976c85f93f34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

module Gitlab
  module SidekiqConfig
    # For queues that don't have explicit workers - default and mailers
    class DummyWorker
      ATTRIBUTE_METHODS = {
        queue: :queue,
        name: :name,
        feature_category: :get_feature_category,
        has_external_dependencies: :worker_has_external_dependencies?,
        urgency: :get_urgency,
        resource_boundary: :get_worker_resource_boundary,
        idempotent: :idempotent?,
        weight: :get_weight,
        tags: :get_tags
      }.freeze

      def initialize(attributes = {})
        @attributes = attributes
      end

      def queue_namespace
        nil
      end

      ATTRIBUTE_METHODS.each do |attribute, meth|
        define_method meth do
          @attributes[attribute]
        end
      end
    end
  end
end