class BackgroundJobs::JobMetadata

Attributes

clazz[R]
name[R]
options[R]
type[R]

Public Class Methods

new(name, type, clazz, options = nil) click to toggle source
# File lib/background_jobs/job_registry.rb, line 17
def initialize(name, type, clazz, options = nil)
  @name, @type, @clazz, @options = name, type, clazz, options
end