Package org.apache.hadoop.io.simpleseekableformat.SimpleSeekableFormat

Examples of org.apache.hadoop.io.simpleseekableformat.SimpleSeekableFormat.MetaData


   */
  protected SimpleSeekableFormatOutputStream(DataOutputStream out) {
    // We don't use the inherited field "out" at all.
    super(null);

    metadata = new MetaData();
    SortedMap<Long, Long> offsetPairs = new TreeMap<Long, Long>();
    offsetPairs.put(0L, 0L);
    metadata.setOffsetPairs(offsetPairs);

    this.dataSegmentOut =
View Full Code Here

TOP

Related Classes of org.apache.hadoop.io.simpleseekableformat.SimpleSeekableFormat.MetaData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.