Package edu.wpi.first.wpilibj2.command
Class PerpetualCommand
java.lang.Object
edu.wpi.first.wpilibj2.command.CommandBase
edu.wpi.first.wpilibj2.command.PerpetualCommand
@Deprecated(forRemoval=true, since="2023") public class PerpetualCommand extends CommandBase
Deprecated, for removal: This API element is subject to removal in a future version.
PerpetualCommand violates the assumption that execute() doesn't get called after
isFinished() returns true -- an assumption that should be valid. This was unsafe/undefined
behavior from the start, and RepeatCommand provides an easy way to achieve similar end
results with slightly different (and safe) semantics.
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 composition, 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.
This class is provided by the NewCommands VendorDep
-
Nested Class Summary
Nested classes/interfaces inherited from interface edu.wpi.first.wpilibj2.command.Command
Command.InterruptionBehavior
-
Field Summary
-
Constructor Summary
Constructors Constructor Description PerpetualCommand(Command command)
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new PerpetualCommand. -
Method Summary
Modifier and Type Method Description void
end(boolean interrupted)
Deprecated, for removal: This API element is subject to removal in a future version.The action to take when the command ends.void
execute()
Deprecated, for removal: This API element is subject to removal in a future version.The main body of a command.void
initialize()
Deprecated, for removal: This API element is subject to removal in a future version.The initial subroutine of a command.boolean
runsWhenDisabled()
Deprecated, for removal: This API element is subject to removal in a future version.Whether the given command should run when the robot is disabled.Methods inherited from class edu.wpi.first.wpilibj2.command.CommandBase
addRequirements, getName, getRequirements, getSubsystem, initSendable, setName, setSubsystem
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface edu.wpi.first.wpilibj2.command.Command
alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineWith, finallyDo, getInterruptionBehavior, handleInterrupt, hasRequirement, ignoringDisable, isFinished, isScheduled, perpetually, raceWith, repeatedly, schedule, unless, until, withInterrupt, withInterruptBehavior, withName, withTimeout
-
Field Details
-
m_command
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Constructor Details
-
PerpetualCommand
Deprecated, for removal: This API element is subject to removal in a future version.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
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Command
The initial subroutine of a command. Called once when the command is initially scheduled. -
execute
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Command
The main body of a command. Called repeatedly while the command is scheduled. -
end
Deprecated, for removal: This API element is subject to removal in a future version.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.Do not schedule commands here that share requirements with this command. Use
Command.andThen(Command...)
instead.- Parameters:
interrupted
- whether the command was interrupted/canceled
-
runsWhenDisabled
Deprecated, for removal: This API element is subject to removal in a future version.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
-