Class CombineFileRecordReaderWrapper<K,V>

java.lang.Object
org.apache.hadoop.mapred.lib.CombineFileRecordReaderWrapper<K,V>
All Implemented Interfaces:
Closeable, AutoCloseable, RecordReader<K,V>

@Public @Stable public abstract class CombineFileRecordReaderWrapper<K,V> extends Object implements RecordReader<K,V>
A wrapper class for a record reader that handles a single file split. It delegates most of the methods to the wrapped instance. A concrete subclass needs to provide a constructor that calls this parent constructor with the appropriate input format. The subclass constructor must satisfy the specific constructor signature that is required by CombineFileRecordReader. Subclassing is needed to get a concrete record reader wrapper because of the constructor requirement.
See Also: