Skip to content

Instantly share code, notes, and snippets.

@rclayton-the-terrible
Created April 23, 2012 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rclayton-the-terrible/2474028 to your computer and use it in GitHub Desktop.
Save rclayton-the-terrible/2474028 to your computer and use it in GitHub Desktop.
Writable Interface
package org.apache.hadoop.io;
import java.io.DataOutput;
import java.io.DataInput;
import java.io.IOException;
public interface Writable {
void write(DataOutput out) throws IOException;
void readFields(DataInput in) throws IOException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment