public interface HadoopTypeConverter<K,V>
extends Serializable
An interface describing a class that is able to
convert Hadoop types into Stratosphere's Record model.
The converter must be Serializable.
Stratosphere provides a DefaultHadoopTypeConverter. Custom implementations should
chain the type converters.
Method Summary
Methods
Modifier and Type
Method and Description
void
convert(eu.stratosphere.types.Record stratosphereRecord,
K hadoopKey,
V hadoopValue)
Convert a Hadoop type to a Stratosphere type.
Method Detail
convert
void convert(eu.stratosphere.types.Record stratosphereRecord,
K hadoopKey,
V hadoopValue)