Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base_job.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e21e7e0e4a35bd2fadfaf6dcae4b37bf71edcedb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Simple base class for background migration job classes which are executed through the sidekiq queue.
    #
    # Any job class that inherits from the base class will have connection to the tracking database set on
    # initialization.
    class BaseJob
      def initialize(connection:)
        @connection = connection
      end

      def perform(*arguments)
        raise NotImplementedError, "subclasses of #{self.class.name} must implement #{__method__}"
      end

      private

      attr_reader :connection
    end
  end
end