Package 

Class Commands


  • 
    public class Commands
    
                        

    Commands= factory.

    • Method Detail

      • anyOf

         static Command anyOf(String name, Array<Command> commandList)

        Creates a new command group for commands that need to execute exclusively.

        Parameters:
        name - command group name.
        commandList - list of commands in the group.
      • parallel

         static Command parallel(String name, Array<Command> commandList)

        Creates a new command group for commands that must run in parallel.

        Parameters:
        name - command group name.
        commandList - list of commands in the group.
      • sequential

         static Command sequential(String name, Array<Command> commandList)

        Creates a new command group for commands that must run in sequence.

        Parameters:
        name - command group name.
        commandList - list of commands in the group.