
com.twitter.elephantbird.mapreduce.io.RawBytesWritable Maven / Gradle / Ivy
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