ListenerCommand
class ListenerCommand @JvmOverloads constructor(command: Command = emptyCommand(), var onInit: Runnable = Runnable {}, var onExecute: Runnable = Runnable {}, var onEnd: Consumer<Boolean> = Consumer<Boolean> {}) : Command
A command useful for adding listeners to other commands.
Parameters
command
the command to be run.
onInit
the action to run when this command initializes.
onExecute
the action to run whenever this command updates.
onEnd
the action to run when this command is ended. Takes in whether it was interrupted as a parameter.
Properties
Functions
Link copied to clipboard
Runs repeatedly until isFinished returns true.
Link copied to clipboard
Returns whether this command is finished.