Class Activator
java.lang.Object
madkit.kernel.Activator
- All Implemented Interfaces:
Comparable<Activator>
- Direct Known Subclasses:
MethodActivator
This class defines a tool for scheduling mechanism. An activator is configured
according to a community, a group and a role.
Subclasses should override execute(Object...)
for defining how a sequential
execution of a list of agents take place. By default, this list corresponds to all the
agents having the group and role defined in the activator.
- Since:
- MaDKit 2.0
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Builds a new Activator on the given CGR location of the artificial society, without specifying the community.protected
Builds a new Activator on the given CGR location of the artificial society. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Makes all the agents leave the corresponding role at once.int
Implementing theComparable
interface for sorting activators according to their priority.abstract void
Trigger the execution of this activator.static void
executeBehaviorOf
(Agent agent, String behaviorName, Object... args) Executes a specific method on a targeted agent.Returns a snapshot at moment t of the agents handling the group/role coupleGets the community to which this activator/probe is binded to.getGroup()
Gets the group to which this activator/probe is binded to.getName()
Gets the name.int
The priority of this activator when conflicting with another Activator.getRole()
Gets the role to which this activator/probe is binded to.<S extends Scheduler<?>>
SGets the scheduler that manages this activator.SimuTimer
<?> Get theSimuTimer
associated with the simulationboolean
isEmpty()
Checks if there is no agent in the group/role couplevoid
Kills all the agents which are monitored.protected void
Automatically called when an agent joins the corresponding group and role.protected void
onRemoving
(Agent agent) Automatically called when an agent leaves the corresponding group and role.void
setPriority
(int priority) Sets the priority of the activator.int
size()
Returns the number of targeted agents.toString()
returns a string containing the CGR location and the number of monitored agents.
-
Constructor Details
-
Activator
Builds a new Activator on the given CGR location of the artificial society. Once created, it has to be added by aScheduler
agent using theScheduler.addActivator(Activator)
.- Parameters:
community
- the name of the community where the Activator will operategroup
- the name of the group within the communityrole
- the role assigned to the Activator within the group
-
Activator
Builds a new Activator on the given CGR location of the artificial society, without specifying the community. This constructor is used to simplify declaration when used with the default implementation of a simulation engine provided in the madkit.simulation package. Once created, it has to be added by aScheduler
agent using theScheduler.addActivator(Activator)
.- Parameters:
group
- the name of the group within the communityrole
- the role assigned to the Activator within the group
-
-
Method Details
-
compareTo
Implementing theComparable
interface for sorting activators according to their priority.- Specified by:
compareTo
in interfaceComparable<Activator>
-
getPriority
public int getPriority()The priority of this activator when conflicting with another Activator. A lesser priority means that the activator will be triggered first. Default priority is 0. By default, when two activators have the same priority, the order of activation is not guaranteed.- Returns:
- the priority of this activator.
-
getScheduler
Gets the scheduler that manages this activator.- Returns:
- the scheduler that manages this activator.
-
setPriority
public void setPriority(int priority) Sets the priority of the activator. seegetPriority()
- Parameters:
priority
- an int defining the activator's priority
-
execute
Trigger the execution of this activator. For instance, subclasses can use thegetAgents()
to make all the agents do something. This method should be called by the scheduler.- Parameters:
args
- arguments that could be passed by the scheduler- See Also:
-
executeBehaviorOf
Executes a specific method on a targeted agent.- Parameters:
agent
- the targeted agent.behaviorName
- the name of a method belonging to the agents (even private or inherited ones)args
- parameters to be passed for the invocation
-
toString
returns a string containing the CGR location and the number of monitored agents.- Returns:
- a string representation of this tool.
-
getSimuTimer
-
getCommunity
Gets the community to which this activator/probe is binded to.- Returns:
- a string representing the community's name
-
getGroup
Gets the group to which this activator/probe is binded to.- Returns:
- a string representing the group's name
-
getRole
Gets the role to which this activator/probe is binded to.- Returns:
- a string representing the role's name
-
onAdding
Automatically called when an agent joins the corresponding group and role. Override this method when you want to do some initialization when an agent enters the group/role.- Parameters:
agent
- which has been added to this group/role
-
onRemoving
Automatically called when an agent leaves the corresponding group and role. Override this method when you want to do some work when an agent leaves the group/role. Note that the role is still handled by the agent when invoked.- Parameters:
agent
- the agent which is being removed from this group/role
-
size
public int size()Returns the number of targeted agents.- Returns:
- the number of targeted agents
-
isEmpty
public boolean isEmpty()Checks if there is no agent in the group/role couple- Returns:
- true, if no agent is handling the group/role couple
-
getAgents
-
getName
-
killAgents
public void killAgents()Kills all the agents which are monitored. -
allAgentsLeaveRole
public void allAgentsLeaveRole()Makes all the agents leave the corresponding role at once.
-