aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/CHANGELOG.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-12-30 15:39:29 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-12-30 15:39:29 -0800
commita4d5e835608d951cf6c306ccc9aed06896e07c15 (patch)
treed9ba11de39c0a8024317c289b3959a7e8a577608 /activejob/CHANGELOG.md
parent4080dd2f244e7c4d140f8724c2075102ea9db36e (diff)
parent65542e27979fce1f6b0893a00e4d51849616de34 (diff)
downloadrails-a4d5e835608d951cf6c306ccc9aed06896e07c15.tar.gz
rails-a4d5e835608d951cf6c306ccc9aed06896e07c15.tar.bz2
rails-a4d5e835608d951cf6c306ccc9aed06896e07c15.zip
Merge pull request #18260 from isaacseymour/active-job-delegate-deserialize
ActiveJob: delegate deserialization to the job class
Diffstat (limited to 'activejob/CHANGELOG.md')
-rw-r--r--activejob/CHANGELOG.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md
index f9c481998e..c9d9484518 100644
--- a/activejob/CHANGELOG.md
+++ b/activejob/CHANGELOG.md
@@ -1 +1,26 @@
+* `ActiveJob::Base.deserialize` delegates to the job class
+
+ Since `ActiveJob::Base#deserialize` can be overriden 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. E.g.
+
+ class DeliverWebhookJob < ActiveJob::Base
+ def serialize
+ super.merge('attempt_number' => (@attempt_number || 0) + 1)
+ end
+
+ def deserialize(job_data)
+ super(job_data)
+ @attempt_number = job_data['attempt_number']
+ end
+
+ rescue_from(TimeoutError) do |ex|
+ raise ex 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.