Uses of Class
p2pMapReduce.entity.SlaveTask

Packages that use SlaveTask
p2pMapReduce.entity   
p2pMapReduce.gui   
p2pMapReduce.impl.nodeModule   
p2pMapReduce.nodeModule   
 

Uses of SlaveTask in p2pMapReduce.entity
 

Methods in p2pMapReduce.entity with parameters of type SlaveTask
 TaskRunner MapTask.createTaskRunner(SlaveTask slaveTask, NodeModuleIF nodeModule)
           
 TaskRunner ReduceTask.createTaskRunner(SlaveTask slaveTask, NodeModuleIF nodeModule)
           
abstract  TaskRunner Task.createTaskRunner(SlaveTask slaveTask, NodeModuleIF nodeModule)
           
 

Constructors in p2pMapReduce.entity with parameters of type SlaveTask
MapTaskRunner(SlaveTask slaveTask, NodeModuleIF nodeModule)
           
ReduceTaskRunner(SlaveTask slaveTask, NodeModuleIF nodeModule)
           
TaskRunner(SlaveTask task, NodeModuleIF nodeModule)
           
 

Uses of SlaveTask in p2pMapReduce.gui
 

Methods in p2pMapReduce.gui with parameters of type SlaveTask
static void TaskViewer.show(SlaveTask st, NodeFSM nodeFSM, GUIFrame guiFrame)
           
 

Constructors in p2pMapReduce.gui with parameters of type SlaveTask
TaskSummaryP(SlaveTask slaveTask)
          Creates new form PrimaryJobSummaryP
TaskViewer(SlaveTask st, NodeFSM nodeFSM, javax.swing.JFrame frame)
           
 

Uses of SlaveTask in p2pMapReduce.impl.nodeModule
 

Methods in p2pMapReduce.impl.nodeModule that return SlaveTask
 SlaveTask NodeModuleImpl.getSlaveTask(java.lang.String taskID)
           
 SlaveTask NodeModuleImpl.removeSlaveTask(java.lang.String taskID)
           
 

Methods in p2pMapReduce.impl.nodeModule that return types with arguments of type SlaveTask
 java.util.HashMap<java.lang.String,SlaveTask> NodeModuleImpl.getSlaveTaskMap()
           
 

Methods in p2pMapReduce.impl.nodeModule with parameters of type SlaveTask
 void NodeModuleImpl.addSlaveTask(SlaveTask st)
           
 

Uses of SlaveTask in p2pMapReduce.nodeModule
 

Methods in p2pMapReduce.nodeModule that return SlaveTask
 SlaveTask NodeModuleIF.getSlaveTask(java.lang.String taskID)
           
 SlaveTask NodeModuleIF.removeSlaveTask(java.lang.String taskID)
           
 

Methods in p2pMapReduce.nodeModule that return types with arguments of type SlaveTask
 java.util.HashMap<java.lang.String,SlaveTask> NodeModuleIF.getSlaveTaskMap()
           
 

Methods in p2pMapReduce.nodeModule with parameters of type SlaveTask
 void NodeModuleIF.addSlaveTask(SlaveTask st)
           
 

Constructors in p2pMapReduce.nodeModule with parameters of type SlaveTask
TaskManager(NodeFSM nodeFSM, SlaveTask slaveTask)