vertx / io.vertx.ext.shell / Shell / createJob

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.

Parameters

line - the command line creating this job

Return
the created job

abstract fun createJob(line: String): Job

See #createJob(List)