interface Command
A Vert.x Shell command, it can be created from any language using the CommandBuilder#command or from a Java class using Command#create
Author
Julien Viet
open fun cli(): CLI |
|
open fun complete(completion: Completion): Unit
Perform command completion, when the command is done completing it should call |
|
open static fun create(vertx: Vertx, clazz: Class<out AnnotatedCommand>): Command
Create a command from a Java class, annotated with Vert.x Core CLI annotations. |
|
open fun createProcess(): Process
Create a new process with empty arguments. abstract fun createProcess(args: MutableList<CliToken>): Process
Create a new process with the passed arguments. |
|
open fun name(): String |