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

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

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

/**
 * A simple interface to serialize and deserialize objects
 */
public interface BinaryConverter {
  /* TODO : What about exceptions?
   */

  /** Returns deserialized object. Throws if deserialization fails. */
  M fromBytes(byte[] messageBuffer) throws DecodeException;
  
  byte[] toBytes(M message);
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy