Options
All
  • Public
  • Public/Protected
  • All
Menu

A sequential command executes a series of commands in order. The sequential command executes the command list in order, waiting for the previous command to finish before executing the next. The sequential command is finished when all of its child commands have finished. When the Sequential command is terminated early, the currently executing command is terminated and no further commands are executed.

interface

Hierarchy

  • SequentialCommand

Index

Properties

Optional catch

catch: Array<Command>

commands

commands: Array<Command>

Optional delay

delay: number | string

Optional description

description: string

Optional finally

finally: Array<Command>

Optional repeatCount

repeatCount: number | string

type

type: "Sequential"

Optional when

when: boolean