Class: Mandy::Mappers::TransposeMapper

Inherits:
Base
  • Object
show all
Defined in:
lib/mandy/mappers/transpose_mapper.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

#input_format, #output_format

Instance Method Summary collapse

Methods inherited from Base

compile, #execute

Methods included from IO::InputFormatting

#input_deserialize_key, #input_deserialize_value

Methods inherited from Task

#emit, #get, #initialize, #put

Constructor Details

This class inherits a constructor from Mandy::Task

Instance Method Details

#mapper(key, value) ⇒ Object



4
5
6
7
# File 'lib/mandy/mappers/transpose_mapper.rb', line 4

def mapper(key,value)
  # default map is simply a pass-through
  emit(value, key)
end