Uses of Class
com.cliftonsnyder.clutch.Agent

Packages that use Agent
com.cliftonsnyder.clutch   
com.cliftonsnyder.clutch.mr   
com.cliftonsnyder.clutch.util   
 

Uses of Agent in com.cliftonsnyder.clutch
 

Fields in com.cliftonsnyder.clutch declared as Agent
protected  Agent Agent.parent
          the parent of the Agent
 

Fields in com.cliftonsnyder.clutch with type parameters of type Agent
protected  java.util.List<Agent> Agent.ancestorList
          a list of all of the ancestors of the Agent (i.e., a List of all Agents in the path from this Agent to the "root" Agent)
protected  java.util.List<Agent> Agent.children
          a List of the children of the Agent
 

Methods in com.cliftonsnyder.clutch that return Agent
abstract  Agent Agent.createAgent(Node newAgentNode, Node newDataNode)
          method to be implemented by subclasses of Agent; this is where the interesting organization of a Clutch network will take place
 Agent Agent.getParent()
          getter for this Agent's parent
 Agent Agent.getRef()
          gets a reference to the Agent; this method is needed when programming with ProActive, as it may be necessary to return a reference to a remote stub (as opposed to a pointed to this)
 

Methods in com.cliftonsnyder.clutch that return types with arguments of type Agent
 java.util.List<Agent> Agent.getAncestorList()
           
 java.util.List<Agent> Agent.getChildren()
          getter for the children of this Agent
 

Methods in com.cliftonsnyder.clutch with parameters of type Agent
 void Agent.addChild(Agent child)
          adds a child to the list of this Agent's children
 void Agent.setParent(Agent parent)
          setter for the Agent's parent
 

Method parameters in com.cliftonsnyder.clutch with type arguments of type Agent
 void Agent.setAncestorList(java.util.List<Agent> ancestorList)
           
 

Uses of Agent in com.cliftonsnyder.clutch.mr
 

Subclasses of Agent in com.cliftonsnyder.clutch.mr
 class Mapper
          a mobile agent representing a mapper
 class Reducer
          a mobile agent representing a reducer
 

Methods in com.cliftonsnyder.clutch.mr that return Agent
 Agent Reducer.createAgent(Node newAgentNode, Node newDataNode)
           
 

Uses of Agent in com.cliftonsnyder.clutch.util
 

Methods in com.cliftonsnyder.clutch.util that return Agent
 Agent ClutchState.getRemoteAgent()
           
 Agent ClutchState.getRemoteAgent(java.lang.String agentClassname)
           
 Agent ClutchState.getRemoteAgentFromHost(java.lang.String hostname, java.lang.String agentClassname)
          retrieves a remote Agent from one of the bootstrap locations specified in the configuration file
 

Methods in com.cliftonsnyder.clutch.util with parameters of type Agent
 void AgentWatcher.addAgent(Agent agent)