Uses of Class
p2pMapReduce.mapreduceModule.Partitioner

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

Uses of Partitioner in p2pMapReduce.mapreduceModule
 

Methods in p2pMapReduce.mapreduceModule that return types with arguments of type Partitioner
 java.lang.Class<? extends Partitioner> JobConf.getPartitionerClass()
          Get the Partitioner used to partition Mapper-outputs to be sent to the Reducers.
 java.lang.Class<? extends Partitioner<?,?>> JobContext.getPartitionerClass()
          Get the Partitioner class for the job.
 java.lang.Class<? extends Partitioner<?,?>> JobContextImpl.getPartitionerClass()
          Get the Partitioner class for the job.
 java.lang.Class<? extends Partitioner<?,?>> WrappedMapper.Context.getPartitionerClass()
           
 java.lang.Class<? extends Partitioner<?,?>> WrappedReducer.Context.getPartitionerClass()
           
 

Method parameters in p2pMapReduce.mapreduceModule with type arguments of type Partitioner
 void Job.setPartitionerClass(java.lang.Class<? extends Partitioner> cls)
          Set the Partitioner for the job.
 void JobConf.setPartitionerClass(java.lang.Class<? extends Partitioner> theClass)
          Set the Partitioner class used to partition Mapper-outputs to be sent to the Reducers.
 

Uses of Partitioner in p2pMapReduce.mapreduceModule.output
 

Subclasses of Partitioner in p2pMapReduce.mapreduceModule.output
 class HashPartitioner<K2,V2>
          Partition keys by their Object.hashCode().