mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
33 lines
685 B
Ruby
33 lines
685 B
Ruby
require 'active_support/rescuable'
|
|
require 'active_job/arguments'
|
|
|
|
module ActiveJob
|
|
module Execution
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
include ActiveSupport::Rescuable
|
|
end
|
|
|
|
def execute(job_id, *serialized_args)
|
|
self.job_id = job_id
|
|
self.arguments = deserialize_arguments(serialized_args)
|
|
|
|
run_callbacks :perform do
|
|
perform(*arguments)
|
|
end
|
|
rescue => exception
|
|
rescue_with_handler(exception) || raise(exception)
|
|
end
|
|
|
|
def perform(*)
|
|
fail NotImplementedError
|
|
end
|
|
|
|
private
|
|
def deserialize_arguments(serialized_args)
|
|
Arguments.deserialize(serialized_args)
|
|
end
|
|
|
|
end
|
|
end
|