vertx / io.vertx.core.spi.launcher

Package io.vertx.core.spi.launcher

Types

CommandFactoryLookup

interface CommandFactoryLookup

The interface to implement to look for commands.

DefaultCommand

abstract class DefaultCommand : Command

Default implementation of Command using annotation to define itself. It is highly recommended to extend this class when implementing a command. It defines two hidden Options to create system properties (-Dkey=value) and a way to configure the current working directory.

DefaultCommandFactory

open class DefaultCommandFactory<C : Command> : CommandFactory<C>

Default implementation of CommandFactory. This implementation defines the CLI from the given Command implementation (by reading the annotation). Then, Command instance are created by calling an empty constructor on the given Command implementation.