Class: Taskinator::Queues::DelayedJobAdapter::CreateProcessWorker

Inherits:
Struct
  • Object
show all
Defined in:
lib/taskinator/queues/delayed_job.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#argsObject

Returns the value of attribute args

Returns:

  • (Object)

    the current value of args



36
37
38
# File 'lib/taskinator/queues/delayed_job.rb', line 36

def args
  @args
end

#definition_nameObject

Returns the value of attribute definition_name

Returns:

  • (Object)

    the current value of definition_name



36
37
38
# File 'lib/taskinator/queues/delayed_job.rb', line 36

def definition_name
  @definition_name
end

#uuidObject

Returns the value of attribute uuid

Returns:

  • (Object)

    the current value of uuid



36
37
38
# File 'lib/taskinator/queues/delayed_job.rb', line 36

def uuid
  @uuid
end

Instance Method Details

#performObject



37
38
39
# File 'lib/taskinator/queues/delayed_job.rb', line 37

def perform
  Taskinator::CreateProcessWorker.new(definition_name, uuid, args).perform
end