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.
line - the command line creating this job
Return
the created job
abstract fun createJob(line: String): Job
See #createJob(List)