модуль ActiveJob::Callbacks::ClassMethods
Эти методы будут включены в любой объект Active Job, добавляя колбеки для методов perform и enqueue.
Публичные методы экземпляра
# File activejob/lib/active_job/callbacks.rb, line 141 def after_enqueue(*filters, &blk) set_callback(:enqueue, :after, *filters, &blk) end
Определяет колбек, который будет вызван сразу после добавления задания в очередь.
class VideoProcessJob < ActiveJob::Base
queue_as :default
after_enqueue do |job|
result = job.successfully_enqueued? ? "success" : "failure"
$statsd.increment "enqueue-video-job.#{result}"
end
def perform(video_id)
Video.find(video_id).process
end
end
# File activejob/lib/active_job/callbacks.rb, line 69 def after_perform(*filters, &blk) set_callback(:perform, :after, *filters, &blk) end
Определяет колбек, который будет вызван сразу после завершения метода perform задания.
class VideoProcessJob < ActiveJob::Base
queue_as :default
after_perform do |job|
UserMailer.notify_video_processed(job.arguments.first)
end
def perform(video_id)
Video.find(video_id).process
end
end
# File activejob/lib/active_job/callbacks.rb, line 162 def around_enqueue(*filters, &blk) set_callback(:enqueue, :around, *filters, &blk) end
Определяет колбек, который будет вызван вокруг добавления задания в очередь.
class VideoProcessJob < ActiveJob::Base
queue_as :default
around_enqueue do |job, block|
$statsd.time "video-job.process" do
block.call
end
end
def perform(video_id)
Video.find(video_id).process
end
end
# File activejob/lib/active_job/callbacks.rb, line 102 def around_perform(*filters, &blk) set_callback(:perform, :around, *filters, &blk) end
Определяет колбек, который будет вызван вокруг метода perform задания.
class VideoProcessJob < ActiveJob::Base
queue_as :default
around_perform do |job, block|
UserMailer.notify_video_started_processing(job.arguments.first)
block.call
UserMailer.notify_video_processed(job.arguments.first)
end
def perform(video_id)
Video.find(video_id).process
end
end
Вы можете получить доступ к возвращаемому значению задания только в том случае, если выполнение не было прервано.
class VideoProcessJob < ActiveJob::Base
around_perform do |job, block|
value = block.call
puts value # => "Hello World!"
end
def perform
"Hello World!"
end
end
# File activejob/lib/active_job/callbacks.rb, line 121 def before_enqueue(*filters, &blk) set_callback(:enqueue, :before, *filters, &blk) end
Определяет колбек, который будет вызван непосредственно перед добавлением задания в очередь.
class VideoProcessJob < ActiveJob::Base
queue_as :default
before_enqueue do |job|
$statsd.increment "enqueue-video-job.try"
end
def perform(video_id)
Video.find(video_id).process
end
end
# File activejob/lib/active_job/callbacks.rb, line 50 def before_perform(*filters, &blk) set_callback(:perform, :before, *filters, &blk) end
Определяет колбек, который будет вызван непосредственно перед выполнением метода perform задания.
class VideoProcessJob < ActiveJob::Base
queue_as :default
before_perform do |job|
UserMailer.notify_video_started_processing(job.arguments.first)
end
def perform(video_id)
Video.find(video_id).process
end
end
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.