open class CommandProcess : Tty
The command process provides interaction with the process of the command provided by Vert.x Shell. NOTE: This class has been automatically generated from the io.vertx.ext.shell.command.CommandProcess non RX-ified interface using Vert.x codegen.
CommandProcess(delegate: CommandProcess) |
static val __TYPE_ARG: TypeArg<CommandProcess> |
open fun args(): MutableList<String> |
|
open fun argsTokens(): MutableList<CliToken> |
|
open fun backgroundHandler(handler: Handler<Void>): CommandProcess
Set a background handler, this handler is called when the command is running and put to background. |
|
open fun commandLine(): CommandLine |
|
open fun end(): Unit
End the process with the exit status open fun end(status: Int): Unit
End the process. |
|
open fun endHandler(handler: Handler<Void>): CommandProcess
Set an end handler, this handler is called when the command is ended, for instance the command is running and the shell closes. |
|
open fun equals(other: Any?): Boolean |
|
open fun foregroundHandler(handler: Handler<Void>): CommandProcess
Set a foreground handler, this handler is called when the command is running and put to foreground. |
|
open fun getDelegate(): CommandProcess |
|
open fun hashCode(): Int |
|
open fun interruptHandler(handler: Handler<Void>): CommandProcess
Set an interrupt handler, this handler is called when the command is interrupted, for instance user press |
|
open fun isForeground(): Boolean |
|
open static fun newInstance(arg: CommandProcess): CommandProcess |
|
open fun resizehandler(handler: Handler<Void>): CommandProcess |
|
open fun resumeHandler(handler: Handler<Void>): CommandProcess
Set a resume handler, this handler is called when the command is resumed, for instance user types |
|
open fun session(): Session |
|
open fun stdinHandler(handler: Handler<String>): CommandProcess |
|
open fun suspendHandler(handler: Handler<Void>): CommandProcess
Set a suspend handler, this handler is called when the command is suspended, for instance user press |
|
open fun toString(): String |
|
open fun vertx(): Vertx |
|
open fun write(data: String): CommandProcess
Write some text to the standard output. |