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.

Constructors

Link copied to clipboard
constructor(command: Command = emptyCommand(), onInit: Runnable = Runnable {}, onExecute: Runnable = Runnable {}, onEnd: Consumer<Boolean> = Consumer<Boolean> {})

Properties

Link copied to clipboard
open override val isInterruptable: Boolean

Whether this command can be interrupted by another command.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val requirements: Set<Component>

The set of components that this command uses.

Functions

Link copied to clipboard
open override fun end(interrupted: Boolean)

Runs once when this command finishes or is interrupted.

Link copied to clipboard
open override fun execute()

Runs repeatedly until isFinished returns true.

Link copied to clipboard
open override fun init()

Runs once when first scheduled.

Link copied to clipboard
open override fun isFinished(): Boolean

Returns whether this command is finished.