Class: Verneuil::ProcessGroup::Root
- Inherits:
-
Struct
- Object
- Struct
- Verneuil::ProcessGroup::Root
- Defined in:
- lib/verneuil/process_group.rb
Overview
Make our root conform to the interface group#step implements.
Instance Attribute Summary collapse
-
#process ⇒ Object
Returns the value of attribute process.
Instance Method Summary collapse
Instance Attribute Details
#process ⇒ Object
Returns the value of attribute process
10 11 12 |
# File 'lib/verneuil/process_group.rb', line 10 def process @process end |
Instance Method Details
#halted? ⇒ Boolean
16 17 18 |
# File 'lib/verneuil/process_group.rb', line 16 def halted? process.halted? end |
#step ⇒ Object
11 12 13 14 |
# File 'lib/verneuil/process_group.rb', line 11 def step process.step return true end |