race

infix fun race(other: Command): RaceCommand

Adds a command to run in parallel with this one (Both run simultaneously until one finishes).


infix fun race(runnable: Runnable): RaceCommand

Adds a runnable to run in parallel with this one (Both run simultaneously until one finishes).