Package edu.wpi.first.wpilibj2.command
Class PerpetualCommand
java.lang.Object
edu.wpi.first.wpilibj2.command.CommandBase
edu.wpi.first.wpilibj2.command.PerpetualCommand
- All Implemented Interfaces:
Command
public class PerpetualCommand extends CommandBase
A command that runs another command in perpetuity, ignoring that command's end conditions. While
this class does not extend
CommandGroupBase
, it is still considered a CommandGroup, as it
allows one to compose another command within it; the command instances that are passed to it
cannot be added to any other groups, or scheduled individually.
As a rule, CommandGroups require the union of the requirements of their component commands.
-
Constructor Summary
Constructors Constructor Description PerpetualCommand(Command command)
Creates a new PerpetualCommand. -
Method Summary
Modifier and Type Method Description void
end(boolean interrupted)
The action to take when the command ends.void
execute()
The main body of a command.void
initialize()
The initial subroutine of a command.boolean
runsWhenDisabled()
Whether the given command should run when the robot is disabled.Methods inherited from class edu.wpi.first.wpilibj2.command.CommandBase
addRequirements, getRequirements
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface edu.wpi.first.wpilibj2.command.Command
alongWith, andThen, asProxy, beforeStarting, cancel, deadlineWith, getName, hasRequirement, interruptOn, isFinished, isScheduled, perpetually, raceWith, schedule, schedule, whenFinished, withTimeout
-
Constructor Details
-
PerpetualCommand
Creates a new PerpetualCommand. Will run another command in perpetuity, ignoring that command's end conditions, unless this command itself is interrupted.- Parameters:
command
- the command to run perpetually
-
-
Method Details
-
initialize
public void initialize()Description copied from interface:Command
The initial subroutine of a command. Called once when the command is initially scheduled. -
execute
public void execute()Description copied from interface:Command
The main body of a command. Called repeatedly while the command is scheduled. -
end
public void end(boolean interrupted)Description copied from interface:Command
The action to take when the command ends. Called when either the command finishes normally, or when it interrupted/canceled.- Parameters:
interrupted
- whether the command was interrupted/canceled
-
runsWhenDisabled
public boolean runsWhenDisabled()Description copied from interface:Command
Whether the given command should run when the robot is disabled. Override to return true if the command should run when disabled.- Returns:
- whether the command should run when the robot is disabled
-