Class: Substation::Processor::Executor
- Inherits:
-
Object
- Object
- Substation::Processor::Executor
- Includes:
- Adamantium::Flat
- Defined in:
- lib/substation/processor/executor.rb
Overview
Supports executing new Substation::Processor handler instances
Constant Summary collapse
- NULL =
new(decompose, compose)
Instance Method Summary collapse
-
#compose(input, output) ⇒ Object
private
Compose input and output.
-
#decompose(input) ⇒ Object
private
Decompose input.
Instance Method Details
#compose(input, output) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Compose input and output
40 41 42 |
# File 'lib/substation/processor/executor.rb', line 40 def compose(input, output) composer.call(input, output) end |
#decompose(input) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Decompose input
25 26 27 |
# File 'lib/substation/processor/executor.rb', line 25 def decompose(input) decomposer.call(input) end |