Class: Mandy::Reducers::TransposeReducer
- Defined in:
- lib/mandy/reducers/transpose_reducer.rb
Constant Summary
Constants inherited from Task
Task::DEFAULT_COUNTER_GROUP, Task::KEY_VALUE_SEPERATOR, Task::NUMERIC_PADDING
Instance Attribute Summary
Attributes inherited from Task
Instance Method Summary collapse
Methods inherited from Base
Methods included from IO::OutputFormatting
#output_serialize_key, #output_serialize_value
Methods inherited from Task
#emit, #get, #initialize, #put
Constructor Details
This class inherits a constructor from Mandy::Task
Instance Method Details
#reducer(key, values) ⇒ Object
4 5 6 |
# File 'lib/mandy/reducers/transpose_reducer.rb', line 4 def reducer(key,values) values.each {|value| emit(value, key) } end |