Uses of Class
p2pMapReduce.mapreduceModule.Mapper.Context

Packages that use Mapper.Context
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
p2pMapReduce.test.mapreduceModule.local   
p2pMapReduce.test.nodeModule   
 

Uses of Mapper.Context in p2pMapReduce.mapreduceModule
 

Subclasses of Mapper.Context in p2pMapReduce.mapreduceModule
 class WrappedMapper.Context
           
 

Methods in p2pMapReduce.mapreduceModule that return Mapper.Context
 Mapper.Context WrappedMapper.getMapContext(MapContext<KEYIN,VALUEIN,KEYOUT,VALUEOUT> mapContext)
          Get a wrapped WrappedMapper.Context for custom implementations.
 

Methods in p2pMapReduce.mapreduceModule with parameters of type Mapper.Context
protected  void Mapper.cleanup(Mapper.Context context)
          Called once at the end of the task.
protected  void Mapper.map(KEYIN key, VALUEIN value, Mapper.Context context)
          Called once for each key/value pair in the input split.
 void Mapper.run(Mapper.Context context)
          Expert users can override this method for more complete control over the execution of the Mapper.
protected  void Mapper.setup(Mapper.Context context)
          Called once at the beginning of the task.
 

Uses of Mapper.Context in p2pMapReduce.test.mapreduceModule.local
 

Methods in p2pMapReduce.test.mapreduceModule.local with parameters of type Mapper.Context
 void LocalSubmitter.WordCountMapper.map(java.lang.Long key, java.lang.String value, Mapper.Context context)
           
protected  void LocalSubmitter.InvertedIndexMapper.map(java.lang.Long key, java.lang.String value, Mapper.Context context)
           
 

Uses of Mapper.Context in p2pMapReduce.test.nodeModule
 

Methods in p2pMapReduce.test.nodeModule with parameters of type Mapper.Context
protected  void JobFactory.SorterMapper.map(java.lang.Long key, java.lang.String value, Mapper.Context context)
           
 void JobFactory.WordCountMapper.map(java.lang.Long key, java.lang.String value, Mapper.Context context)
           
protected  void JobFactory.InvertedIndexMapper.map(java.lang.Long key, java.lang.String value, Mapper.Context context)