Package jason.stdlib
Class nano_time
java.lang.Object
jason.asSemantics.DefaultInternalAction
jason.stdlib.nano_time
- All Implemented Interfaces:
InternalAction
,Serializable
@Manual(literal=".nano_time(T)",
hint="eturn system time in nano seconds",
argsHint="system time in nano seconds",
argsType="number",
examples=".nano_time(T) unify in T the current system time in nano seconds",
seeAlso={"jason.stdlib.create_agent","jason.stdlib.save_agent"})
public class nano_time
extends DefaultInternalAction
Internal action: .nano_time
.
Description: return system time in nano seconds
Parameters:
- + nano_time (number): system time in nano seconds.
Examples:
-
.nano_time(T)
: unify in T the current system time in nano seconds.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
checkArguments
(Term[] args) execute
(TransitionSystem ts, Unifier un, Term[] args) Executes the internal action.int
int
Methods inherited from class jason.asSemantics.DefaultInternalAction
canBeUsedInContext, destroy, prepareArguments, suspendIntention
-
Constructor Details
-
nano_time
public nano_time()
-
-
Method Details
-
getMinArgs
public int getMinArgs()- Overrides:
getMinArgs
in classDefaultInternalAction
-
getMaxArgs
public int getMaxArgs()- Overrides:
getMaxArgs
in classDefaultInternalAction
-
checkArguments
- Overrides:
checkArguments
in classDefaultInternalAction
- Throws:
JasonException
-
execute
Description copied from interface:InternalAction
Executes 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:
execute
in interfaceInternalAction
- Overrides:
execute
in classDefaultInternalAction
- Throws:
Exception
-