Uses of Interface
p2pMapReduce.mapreduceModule.TaskInputOutputContext

Packages that use TaskInputOutputContext
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
 

Uses of TaskInputOutputContext in p2pMapReduce.mapreduceModule
 

Subinterfaces of TaskInputOutputContext in p2pMapReduce.mapreduceModule
 interface MapContext<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          The context that is given to the Mapper.
 interface ReduceContext<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          The context passed to the Reducer.
 

Classes in p2pMapReduce.mapreduceModule that implement TaskInputOutputContext
 class MapContextImpl<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          The context that is given to the Mapper.
 class Mapper.Context
          The Context passed on to the Mapper implementations.
 class ReduceContextImpl<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          NOTE: the format of intermediate result depends on MapContext#write(K,V) method that refer to RecordWriter
 class Reducer.Context
          The Context passed on to the Reducer implementations.
 class TaskInputOutputContextImpl<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          A context object that allows input and output from the task.
 class WrappedMapper.Context
           
 class WrappedReducer.Context