BasicCommand

class BasicCommand(runnable: Runnable = Runnable {}) : Command

A command that executes the provided runnable once. Easily decorated.

Constructors

Link copied to clipboard
constructor(runnable: Runnable = Runnable {})

Properties

Link copied to clipboard
open override var isInterruptable: Boolean

Whether this command can be interrupted by another command.

Functions

Link copied to clipboard
open override fun execute()

Runs repeatedly until isFinished returns true.

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

Returns whether this command is finished.