Package jason.stdlib

Class fork

java.lang.Object
All Implemented Interfaces:
InternalAction, java.io.Serializable

@Manual(literal=".fork",
        hint="Implementation of .fork (occurring when |& and || operators are used)",
        argsHint="",
        argsType="",
        examples="",
        seeAlso="")
public class fork
extends DefaultInternalAction
Implementation of .fork (used for |& and || operators).

Syntax:

  plan_body1 "|&" | "||" plan_body2 ....

|& is concurrent and: both plan_body1 and plan_body2 have to finishes successfully || is concurrent or : either plan_body1 or plan_body2 have to finishes successfully

Example:


See Also:
Serialized Form