Class: Warped::Jobs::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/warped/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 Warped 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 Warped::Jobs::Base

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

See Also: