The base class of Prominic.NET's native process handlers.
Variables
read onlystdoutBuffer:StringBuffer
The buffer that contains the data read from standard output stream
Methods
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 |
---|
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. |
---|