ProcessHandle
enum ProcessHandle
Sourcecase ProcessHandle({ exitValue = Unit -> Int32 \ Exec + IO, isAlive = Unit -> Bool \ Exec + IO, stop = Unit -> Unit \ Exec + IO })
Handles the created Process.
Definitions
def exitValue(ph: ProcessHandle): Int32 \ Exec + IO
SourceReturns the exit value of the process.
def isAlive(ph: ProcessHandle): Bool \ Exec + IO
SourceReturns status of the process, if it alive or not.
def stop(ph: ProcessHandle): Unit \ Exec + IO
SourceStops the process.