public class AbstractAgent extends java.lang.Object implements Agent
MessageStream
is the key customizable interface
for an agent developer. Developers will implement callbacks for each
packet type the agent understands.
Most developers will extend from SimpleActor
instead of implementing Actor directly. SimpleActor adds an
annotation-based message dispatching system to simplify Actor development.Modifier | Constructor and Description |
---|---|
protected |
AbstractAgent() |
|
AbstractAgent(java.lang.String address,
Mailbox mailbox,
Broker broker) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAddress()
Returns the actor's address, so the
Broker can
deliver messages to this actor. |
Broker |
getBroker()
Returns the actor's broker.
|
Mailbox |
getMailbox()
The stream to send messages to the actor.
|
java.lang.String |
toString() |
public java.lang.String getAddress()
Broker
can
deliver messages to this actor.getAddress
in interface Agent
public Mailbox getMailbox()
getMailbox
in interface Agent
public Broker getBroker()
public java.lang.String toString()
toString
in class java.lang.Object