Skip to content

Instantly share code, notes, and snippets.

@rclayton-the-terrible
Created February 6, 2012 03:08
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/1749297 to your computer and use it in GitHub Desktop.
Save rclayton-the-terrible/1749297 to your computer and use it in GitHub Desktop.
public interface Mapper<InKey, InValue, OutKey, OutValue> {
void map(InKey key, InValue value, OutputCollector<OutKey, OutValue> output, Reporter reporter) throws IOException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment