Package astra.lang
Class AgentState
- java.lang.Object
-
- astra.lang.AgentState
-
- All Implemented Interfaces:
Serializable
public class AgentState extends Object implements Serializable
This is not an API - it is support class that us used by theSystemAPI.- Author:
- Rem Collier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AgentState(String name, String type, byte[] beliefs)A container to hold the state of an agent (this is not used in execution, but can be used to store, retrieve, or transfer the agents state).
-
-
-
Constructor Detail
-
AgentState
public AgentState(String name, String type, byte[] beliefs)
A container to hold the state of an agent (this is not used in execution, but can be used to store, retrieve, or transfer the agents state).- Parameters:
name- the name of the agenttype- the type of the agentbeliefs- a byte array containing a binary representation of the beliefs of the agent
-
-