Class: Libis::Workflow::TaskGroup
- Defined in:
- lib/libis/workflow/task_group.rb
Overview
noinspection RubyTooManyMethodsInspection
Instance Attribute Summary collapse
-
#tasks ⇒ Object
Returns the value of attribute tasks.
Attributes inherited from Task
Instance Method Summary collapse
- #<<(task) ⇒ Object
- #apply_options(opts) ⇒ Object
-
#initialize(parent, cfg = {}) ⇒ TaskGroup
constructor
A new instance of TaskGroup.
Methods inherited from Task
#logger, #message, #namepath, #names, #run, task_classes
Constructor Details
#initialize(parent, cfg = {}) ⇒ TaskGroup
Returns a new instance of TaskGroup.
12 13 14 15 |
# File 'lib/libis/workflow/task_group.rb', line 12 def initialize(parent, cfg = {}) self.tasks = [] super parent, cfg end |
Instance Attribute Details
#tasks ⇒ Object
Returns the value of attribute tasks.
10 11 12 |
# File 'lib/libis/workflow/task_group.rb', line 10 def tasks @tasks end |
Instance Method Details
#<<(task) ⇒ Object
17 18 19 |
# File 'lib/libis/workflow/task_group.rb', line 17 def <<(task) self.tasks << task end |
#apply_options(opts) ⇒ Object
21 22 23 24 25 26 |
# File 'lib/libis/workflow/task_group.rb', line 21 def (opts) super opts self.tasks.each do |task| task. opts end end |