Package edu.wpi.first.wpilibj2.command
Class DeferredCommand
java.lang.Object
edu.wpi.first.wpilibj2.command.Command
edu.wpi.first.wpilibj2.command.DeferredCommand
- All Implemented Interfaces:
Sendable
Defers Command construction to runtime. Runs the command returned by a supplier when this command
is initialized, and ends when it ends. Useful for performing runtime tasks before creating a new
command. If this command is interrupted, it will cancel the command.
Note that the supplier must create a new Command each call. For selecting one of a
preallocated set of commands, use SelectCommand.
This class is provided by the NewCommands VendorDep
-
Nested Class Summary
Nested classes/interfaces inherited from class edu.wpi.first.wpilibj2.command.Command
Command.InterruptionBehavior -
Constructor Summary
ConstructorsConstructorDescriptionDeferredCommand(Supplier<Command> supplier, Set<Subsystem> requirements) Creates a new DeferredCommand that directly runs the supplied command when initialized, and ends when it ends. -
Method Summary
Modifier and TypeMethodDescriptionvoidend(boolean interrupted) The action to take when the command ends.voidexecute()The main body of a command.voidThe initial subroutine of a command.voidinitSendable(SendableBuilder builder) Initializes thisSendableobject.booleanWhether the command has finished.Methods inherited from class edu.wpi.first.wpilibj2.command.Command
addRequirements, addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineFor, deadlineWith, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, runsWhenDisabled, schedule, setName, setSubsystem, unless, until, withDeadline, withInterruptBehavior, withName, withTimeout, withTimeout
-
Constructor Details
-
DeferredCommand
Creates a new DeferredCommand that directly runs the supplied command when initialized, and ends when it ends. Useful for lazily creating commands when the DeferredCommand is initialized, such as if the supplied command depends on runtime state. TheSupplierwill be called each time this command is initialized. The Supplier must create a new Command each call.
-
-
Method Details
-
initialize
Description copied from class:CommandThe initial subroutine of a command. Called once when the command is initially scheduled.- Overrides:
initializein classCommand
-
execute
Description copied from class:CommandThe main body of a command. Called repeatedly while the command is scheduled. -
isFinished
Description copied from class:CommandWhether the command has finished. Once a command finishes, the scheduler will call its end() method and un-schedule it.- Overrides:
isFinishedin classCommand- Returns:
- whether the command has finished.
-
end
Description copied from class:CommandThe 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. -
initSendable
Description copied from interface:SendableInitializes thisSendableobject.- Specified by:
initSendablein interfaceSendable- Overrides:
initSendablein classCommand- Parameters:
builder- sendable builder
-