The base class of Prominic.NET's native process handlers.

Variables

read onlyexitCode:Int

The exit code of the spawned process. It's -1 until the process extis.

read onlypid:Int

The PID of the spawned process. Its value is 0 until the process starts.

read onlyrunning:Bool

Returns whether the process is running (spawned) or not

read onlystderrBuffer:StringBuffer

The buffer that contains the data read from standard error stream

read onlystdoutBuffer:StringBuffer

The buffer that contains the data read from standard output stream

read onlyworkingDirectory:String

The working directory of the process

Methods

clearBuffers():Void

Clears both the stderr and stdout buffers

kill():Void

Kills the process with the system's available kill command. Kill signal: 9 (KILL)

start(?inlineExecution:Bool):Void

Starts the process and sets up the relevant threads for stream processing.

Parameters:

inlineExecution

If true, the process launches without additional output listener threads, waiting for exit code in the current thread, therefore it's a thread blocking function. Stdout, stderr data, pid, and exit code are only available after the process finishes

@:value({ forced : false })stop(forced:Bool = false):Void

Stops the running process.

Parameters:

forced

If true, it tries to kill the process, if false, it closes the process handlers.