Package jason.stdlib
Class broadcast
java.lang.Object
jason.asSemantics.DefaultInternalAction
jason.stdlib.broadcast
- All Implemented Interfaces:
InternalAction,Serializable
@Manual(literal=".broadcast(performative,content)",
hint="broadcasts a message to all known agents",
argsHint={"the performative (tell, achieve, askOne,...)","the message content"},
argsType={"atom","literal"},
examples=".broadcast(tell,value(10)): sends value(10) as a \"tell\" message to all known agents in the society",
seeAlso={"jason.stdlib.send","jason.stdlib.my_name","jason.stdlib.all_names"})
public class broadcast
extends DefaultInternalAction
Internal action: .broadcast.
Description: broadcasts a message to all known agents.
Parameters:
- + ilf (atom): the illocutionary force of the message (tell,
achieve, ...).
- + message (literal): the content of the message.
Example:
-
.broadcast(tell,value(10)): sendsvalue(10)as a "tell" message to all known agents in the society.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturn true if the internal action can be used in plans' contextprotected voidcheckArguments(Term[] args) execute(TransitionSystem ts, Unifier un, Term[] args) Executes the internal action.intintMethods inherited from class jason.asSemantics.DefaultInternalAction
destroy, prepareArguments, suspendIntention
-
Constructor Details
-
broadcast
public broadcast()
-
-
Method Details
-
getMinArgs
public int getMinArgs()- Overrides:
getMinArgsin classDefaultInternalAction
-
getMaxArgs
public int getMaxArgs()- Overrides:
getMaxArgsin classDefaultInternalAction
-
checkArguments
- Overrides:
checkArgumentsin classDefaultInternalAction- Throws:
JasonException
-
canBeUsedInContext
public boolean canBeUsedInContext()Description copied from interface:InternalActionReturn true if the internal action can be used in plans' context- Specified by:
canBeUsedInContextin interfaceInternalAction- Overrides:
canBeUsedInContextin classDefaultInternalAction
-
execute
Description copied from interface:InternalActionExecutes the internal action. It should return a Boolean or an Iterator. A true boolean return means that the IA was successfully executed. An Iterator result means that there is more than one answer for this IA (e.g. see member internal action). - Specified by:
executein interfaceInternalAction- Overrides:
executein classDefaultInternalAction- Throws:
Exception
-