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



25
26
27
# File 'lib/taskinator/queues/delayed_job.rb', line 25

def args
  @args
end

#definition_nameObject

Returns the value of attribute definition_name

Returns:

  • (Object)

    the current value of definition_name



25
26
27
# File 'lib/taskinator/queues/delayed_job.rb', line 25

def definition_name
  @definition_name
end

#uuidObject

Returns the value of attribute uuid

Returns:

  • (Object)

    the current value of uuid



25
26
27
# File 'lib/taskinator/queues/delayed_job.rb', line 25

def uuid
  @uuid
end

Instance Method Details

#performObject



26
27
28
# File 'lib/taskinator/queues/delayed_job.rb', line 26

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