All Packages Class Hierarchy This Package Previous Next Index
Interface oaa.agents.AgentInterface
- public interface AgentInterface
Defines the methods to be implemented by an agent
-
appDone()
- Called when exiting, here the application must disconnect the agent, and kill the threads
-
appInit()
- Called at initialization
-
doEvent(String, String, String)
- Here, the application must define what the agent is doing
-
doIt()
- Starts agent's action
doEvent
public abstract String doEvent(String KS,
String func,
String args)
- Here, the application must define what the agent is doing
doIt
public abstract void doIt()
- Starts agent's action
appInit
public abstract boolean appInit()
- Called at initialization
appDone
public abstract boolean appDone()
- Called when exiting, here the application must disconnect the agent, and kill the threads
All Packages Class Hierarchy This Package Previous Next Index