of

fun of(runnable: Runnable): Component

Creates a component using the provided runnable.


fun of(defaultCommandSupplier: () -> Command? = { null }, runnable: () -> Unit): Component
fun of(runnable: Runnable, defaultCommandSupplier: Supplier<Command?>): Component

Creates a component using the provided runnable and defaultCommandSupplier.


fun of(defaultCommand: Command, runnable: () -> Unit): Component
fun of(runnable: Runnable, defaultCommand: Command): Component

Creates a component using the provided runnable and defaultCommand.