Robot Core Documentation
|
Static Public Member Functions | |
static SequentialCommandGroup | sequence (Command... commands) |
static ParallelCommandGroup | parallel (Command... commands) |
static ParallelRaceGroup | race (Command... commands) |
static ParallelDeadlineGroup | deadline (Command deadline, Command... commands) |
Additional Inherited Members | |
![]() | |
Command () | |
![]() | |
Set< Subsystem > | m_requirements = new HashSet<>() |
A base for CommandGroups.
This class is provided by the NewCommands VendorDep
|
abstract |
Adds the given commands to the command group.
commands | The commands to add. |
|
static |
Factory method for ParallelDeadlineGroup
, included for brevity/convenience.
deadline | the deadline command |
commands | the commands to include |
Commands#deadline(Command, Command...)
|
static |
Factory method for ParallelCommandGroup
, included for brevity/convenience.
commands | the commands to include |
Commands#parallel(Command...)
|
static |
Factory method for ParallelRaceGroup
, included for brevity/convenience.
commands | the commands to include |
Commands#race(Command...)
|
static |
Factory method for SequentialCommandGroup
, included for brevity/convenience.
commands | the commands to include |
Commands#sequence(Command...)