schedule

open fun schedule(vararg commands: Command): Boolean

Schedules commands for execution.

Return

true if all commands were successfully scheduled immediately, and false if they were not. Note that if the scheduler is currently updating, this method will return false, but the scheduler will attempt to schedule the commands when it can. If schedulePolicy is true, all commands will be successfully scheduled.

See also


open fun schedule(runnable: Runnable): Boolean

Schedules commands for execution.

Return

true if all commands were successfully scheduled immediately, and false if they were not. Note that if the scheduler is currently updating, this method will return false, but the scheduler will attempt to schedule the commands when it can. If CommandScheduler.schedulePolicy is true, all commands will be successfully scheduled.

See also


open fun schedule(repeat: Boolean, runnable: Runnable): Boolean

Schedules commands for execution.

Return

true if all commands were successfully scheduled immediately, and false if they were not. Note that if the scheduler is currently updating, this method will return false, but the scheduler will attempt to schedule the commands when it can. If CommandScheduler.schedulePolicy is true, all commands will be successfully scheduled.

Parameters

repeat

whether the provided runnable should run repeatedly or not

See also