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

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

The newest version!
package com.twitter.elephantbird.mapreduce.io;

/**
 * A noop {@link BinaryConverter} that returns the input bytes unmodified.
 */
public class IdentityBinaryConverter implements BinaryConverter {

  @Override
  public byte[] fromBytes(byte[] messageBuffer) {
    return messageBuffer;
  }

  @Override
  public byte[] toBytes(byte[] message) {
    return message;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy