Uses of Class
p2pMapReduce.nodeModule.nodeFsm.State

Packages that use State
p2pMapReduce.nodeModule.nodeFsm   
 

Uses of State in p2pMapReduce.nodeModule.nodeFsm
 

Subclasses of State in p2pMapReduce.nodeModule.nodeFsm
 class Active
          Inner state of Slave macro state A slave node remains in this state until all the job for the task submitted to this node are completed
 class Check_Master
          Inner state of Slave macro state.
 class Idle
          Inner state of Slave macro state.
 class Master
          A FSM macro state representing a master node.
 class NodeState
          A generic NodeFSM state.
 class UserState
          Deprecated. not used
 

Methods in p2pMapReduce.nodeModule.nodeFsm that return State
 State FSM.currentState()
           
 State NodeFSM.getCurrentState()
           
 

Methods in p2pMapReduce.nodeModule.nodeFsm with parameters of type State
 void FSM.transition(State nextState)
          Make the FSM to transit to nextState Calls exitAction() on the current state, update the current state and calls on it entryAction()
 void NodeFSM.transition(State nextState)