Package com.uniforge.origin.command
Class DeferredCommand
java.lang.Object
com.uniforge.origin.command.Command
com.uniforge.origin.command.DeferredCommand
- All Implemented Interfaces:
edu.wpi.first.util.sendable.Sendable
Defers Command construction to runtime. Runs the command returned by the 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 com.uniforge.origin.command.Command
Command.InterruptionBehavior -
Field Summary
Fields inherited from class com.uniforge.origin.command.Command
m_requirements -
Constructor Summary
ConstructorsConstructorDescriptionDeferredCommand(Supplier<Command> supplier, Set<Subsystem> requirements) Creates a new DeferredCommand that 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(edu.wpi.first.util.sendable.SendableBuilder builder) booleanWhether the command has finished.Methods inherited from class com.uniforge.origin.command.Command
addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineWith, errorDetected, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, runsWhenDisabled, schedule, setErrorDetected, setName, setSubsystem, unless, until, withInterruptBehavior, withName, withTimeout
-
Constructor Details
-
DeferredCommand
Creates a new DeferredCommand that runs the supplied command when initialized, and ends when it ends. Useful for lazily creating commands at runtime. TheSupplierwill be called each time this command is initialized. The Supplier must create a new Command each call.
-
-
Method Details
-
initialize
public void initialize()Description copied from class:CommandThe initial subroutine of a command. Called once when the command is initially scheduled.- Overrides:
initializein classCommand
-
execute
public void execute()Description copied from class:CommandThe main body of a command. Called repeatedly while the command is scheduled. -
isFinished
public boolean 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
public void end(boolean interrupted) 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
public void initSendable(edu.wpi.first.util.sendable.SendableBuilder builder) - Specified by:
initSendablein interfaceedu.wpi.first.util.sendable.Sendable- Overrides:
initSendablein classCommand
-