Class: RunTasksJob
- Inherits:
-
ContainerBrokerBaseJob
- Object
- ActiveJob::Base
- ApplicationJob
- ContainerBrokerBaseJob
- RunTasksJob
- Defined in:
- app/jobs/run_tasks_job.rb
Constant Summary
Constants inherited from ContainerBrokerBaseJob
ContainerBrokerBaseJob::JOB_METRIC
Instance Attribute Summary collapse
-
#execution_type ⇒ Object
readonly
Returns the value of attribute execution_type.
Instance Method Summary collapse
Methods inherited from ContainerBrokerBaseJob
Instance Attribute Details
#execution_type ⇒ Object (readonly)
Returns the value of attribute execution_type.
4 5 6 |
# File 'app/jobs/run_tasks_job.rb', line 4 def execution_type @execution_type end |
Instance Method Details
#perform(execution_type:) ⇒ Object
6 7 8 9 10 |
# File 'app/jobs/run_tasks_job.rb', line 6 def perform(execution_type:) @execution_type = execution_type enqueue_tasks end |