Class: Boosted::Jobs::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/boosted/jobs/base.rb

Overview

Base class for all jobs in the application. This class is used to provide a common interface for all jobs used by Boosted and to allow for easy configuration of the parent class. By default, the parent class is set to ActiveJob::Base.

Examples:

Change the parent class for Boosted::Jobs::Base

Boosted.configure do |config|
  config.base_job_parent_class = "ApplicationJob"
end

See Also: