All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.elephantbird.mapreduce.io.RawBytesWritable Maven / Gradle / Ivy

There is a newer version: 4.17
Show newest version
package com.twitter.elephantbird.mapreduce.io;

/**
 * A {@link BinaryWritable} that returns the raw bytes.
 */
public class RawBytesWritable extends BinaryWritable {

  public RawBytesWritable() {
    super(null, new IdentityBinaryConverter());
  }

  @Override
  protected BinaryConverter getConverterFor(Class clazz) {
    return null; // not expected to be invoked since converter is always set.
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy