Lesson 2.?: Command Groups

Last updated
Was this helpful?
Was this helpful?
sequence(
command1(),
command2(),
// ...
commandN())parallel(
command1(),
command2(),
// ...
commandN())race(
command1(),
command2(),
// ...
commandN())deadline(
deadlineCommand(),
command1(),
command2(),
// ...
commandN())