class CallbackProcess
package champaign.sys.io.process
extends BufferedProcess › AbstractProcess
extended by EnterFrameCallbackProcess
Available on Sys
An AbstractProcess implementation that calls callback functions on specific events of the spawned process. For stream output and event handling, an internal loop will be created and attached to the current thread
Constructor
new(cmd:String, ?args:Array<String>, ?workingDirectory:String, ?performanceSettings:Null<ProcessPerformanceSettings>)
An AbstractProcess implementation that calls callback functions on specific events of the spawned process. For stream output and event handling, an internal loop will be created and attached to the current thread. If the current thread does not have an event loop, callbacks will not be called.
Parameters:
cmd | The command to execute, the process will be spawned with this command |
---|---|
args | Optional command line arguments for the given process |
workingDirectory | The optional working directory of the process |
performanceSettings | See ProcessPerformanceSettings.hx for details |
Variables
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, exit code, and callbacks are only available after the process finishes |
---|