public interface 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 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.
|
MessageStream |
getMailbox()
The stream to send messages to the actor.
|
java.lang.String getAddress()
Broker
can
deliver messages to this actor.MessageStream getMailbox()
Broker getBroker()