aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/identifier.rb
blob: af32b0340417d8dc04d6876b53cf6a1a5d7fd8d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'active_job/arguments'

module ActiveJob
  module Identifier
    extend ActiveSupport::Concern

    included do
      attr_writer :job_id
    end

    def job_id
      @job_id ||= SecureRandom.uuid
    end

  end
end