Class: Taskinator::Queues::DelayedJobAdapter::CreateProcessWorker
- Inherits:
-
Struct
- Object
- Struct
- Taskinator::Queues::DelayedJobAdapter::CreateProcessWorker
- Defined in:
- lib/taskinator/queues/delayed_job.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
Returns the value of attribute args.
-
#definition_name ⇒ Object
Returns the value of attribute definition_name.
-
#uuid ⇒ Object
Returns the value of attribute uuid.
Instance Method Summary collapse
Instance Attribute Details
#args ⇒ Object
Returns the value of attribute args
25 26 27 |
# File 'lib/taskinator/queues/delayed_job.rb', line 25 def args @args end |
#definition_name ⇒ Object
Returns the value of attribute definition_name
25 26 27 |
# File 'lib/taskinator/queues/delayed_job.rb', line 25 def definition_name @definition_name end |
#uuid ⇒ Object
Returns the value of attribute uuid
25 26 27 |
# File 'lib/taskinator/queues/delayed_job.rb', line 25 def uuid @uuid end |
Instance Method Details
#perform ⇒ Object
26 27 28 |
# File 'lib/taskinator/queues/delayed_job.rb', line 26 def perform Taskinator::CreateProcessWorker.new(definition_name, uuid, args).perform end |