RepeatCommand

public final class RepeatCommand extends Command

A command that runs another command multiple times.

Parameters

command

the command to run

times

the number of times to run the command. If less than zero, then the command will be run indefinitely.

Constructors

Link copied to clipboard
public RepeatCommand RepeatCommand(Command command, Integer times)

Properties

Link copied to clipboard
private final Boolean isInterruptable

Whether this command can be interrupted by another command.

Link copied to clipboard
private final Set<Component> requirements

The set of components that this command uses.

Functions

Link copied to clipboard
public Unit end(Boolean interrupted)

Runs once when this command finishes or is interrupted.

Link copied to clipboard
public Unit execute()

Runs repeatedly until isFinished returns true.

Link copied to clipboard

The set of components that this command uses.

Link copied to clipboard
public Unit init()

Runs once when first scheduled.

Link copied to clipboard

Returns whether this command is finished.

Link copied to clipboard

Whether this command can be interrupted by another command.