Uses of Class
p2pMapReduce.mapreduceModule.JobID

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

Uses of JobID in p2pMapReduce.gui
 

Methods in p2pMapReduce.gui with parameters of type JobID
 java.lang.String JobIDRenderer.render(JobID jobId)
           
 

Uses of JobID in p2pMapReduce.mapreduceModule
 

Methods in p2pMapReduce.mapreduceModule that return JobID
static JobID JobID.forName(java.lang.String str)
          Construct a JobId object from given string
 JobID JobContext.getJobID()
          Get the unique ID for the job.
 JobID JobContextImpl.getJobID()
          Get the unique ID for the job.
 JobID JobStatus.getJobID()
           
 JobID TaskAttemptID.getJobID()
          Returns the JobID object that this task attempt belongs to
 JobID TaskID.getJobID()
          Returns the JobID object that this tip belongs to
 JobID WrappedMapper.Context.getJobID()
           
 JobID WrappedReducer.Context.getJobID()
           
 

Methods in p2pMapReduce.mapreduceModule with parameters of type JobID
 void JobContextImpl.setJobID(JobID jobId)
          Set the JobID.
 

Constructors in p2pMapReduce.mapreduceModule with parameters of type JobID
Job(Configuration conf, JobID jobID)
           
JobContextImpl(Configuration conf, JobID jobId)
           
JobStatus(JobID jobid, float setupProgress, float mapProgress, float reduceProgress, float cleanupProgress, JobStatus.State runState, java.lang.String user, java.lang.String jobName, java.lang.String jobFile, java.lang.String trackingUrl)
          Create a job status object for a given jobid.
TaskID(JobID jobId, TaskType type, int id)
          Constructs a TaskID object from given JobID.