vertx / io.vertx.ext.shell / Shell

Shell

interface Shell

An interactive session between a consumer and a shell.

Author
Julien Viet

Functions

close

abstract fun close(): Unit

Close the shell.

createJob

abstract fun createJob(line: MutableList<CliToken>): Job

Create a job, the created job should then be executed with the io.vertx.ext.shell.system.Job#run method.

abstract fun createJob(line: String): Job

See #createJob(List)

jobController

abstract fun jobController(): JobController

session

abstract fun session(): Session