aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/CHANGELOG.md
blob: afdd42be337fdb77870fd547fb4ee6e27b250205 (plain) (blame)
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
*  `ActiveJob::Base.deserialize` delegates to the job class


    Since `ActiveJob::Base#deserialize` can be overridden by subclasses (like
    `ActiveJob::Base#serialize`) this allows jobs to attach arbitrary metadata
    when they get serialized and read it back when they get performed. Example:

      class DeliverWebhookJob < ActiveJob::Base
        def serialize
          super.merge('attempt_number' => (@attempt_number || 0) + 1)
        end

        def deserialize(job_data)
          super
          @attempt_number = job_data['attempt_number']
        end

        rescue_from(TimeoutError) do |exception|
          raise exception if @attempt_number > 5
          retry_job(wait: 10)
        end
      end

    *Isaac Seymour*


Please check [4-2-stable](https://github.com/rails/rails/blob/4-2-stable/activejob/CHANGELOG.md) for previous changes.