Uses of Class
edu.wpi.first.wpilibj2.command.CommandGroupBase
| Package | Description |
|---|---|
| edu.wpi.first.wpilibj2.command |
-
Uses of CommandGroupBase in edu.wpi.first.wpilibj2.command
Subclasses of CommandGroupBase in edu.wpi.first.wpilibj2.command Modifier and Type Class Description classParallelCommandGroupA CommandGroup that runs a set of commands in parallel, ending when the last command ends.classParallelDeadlineGroupA CommandGroup that runs a set of commands in parallel, ending only when a specific command (the "deadline") ends, interrupting all other commands that are still running at that point.classParallelRaceGroupA CommandGroup that runs a set of commands in parallel, ending when any one of the commands ends and interrupting all the others.classSequentialCommandGroupA CommandGroups that runs a list of commands in sequence.Methods in edu.wpi.first.wpilibj2.command that return CommandGroupBase Modifier and Type Method Description static CommandGroupBaseCommandGroupBase. deadline(Command deadline, Command... commands)Factory method forParallelDeadlineGroup, included for brevity/convenience.static CommandGroupBaseCommandGroupBase. parallel(Command... commands)Factory method forParallelCommandGroup, included for brevity/convenience.static CommandGroupBaseCommandGroupBase. race(Command... commands)Factory method forParallelRaceGroup, included for brevity/convenience.static CommandGroupBaseCommandGroupBase. sequence(Command... commands)Factory method forSequentialCommandGroup, included for brevity/convenience.