module ActiveJob::Core

def initialize(*arguments)

will be passed to the perform method.
Creates a new job instance. Takes as arguments the arguments that
def initialize(*arguments)
  @arguments  = arguments
  @job_id     = SecureRandom.uuid
  @queue_name = self.class.queue_name
end