A BufferedProcess implementation that dispatches ProcessEvents on specific events of the spawned process. For stream output and event handling, either an internal loop will be created and attached to the current thread, or an openfl.display.DisplayObject's EnterFrame event will be used

Constructor

new(cmd:String, ?args:Array<String>, ?workingDirectory:String, ?performanceSettings:Null<ProcessPerformanceSettings>, ?enterFrameEventDispatcher:DisplayObject)

A BufferedProcess implementation that dispatches ProcessEvents on specific events of the spawned process. For stream output and event handling, either an internal loop will be created and attached to the current thread, or an openfl.display.DisplayObject's EnterFrame event will be used. If the current thread does not have an event loop, events will not get dispatched.

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

enterFrameEventDispatcher

If defined, this DisplayObject's EnterFrame event will be used to process stream data and fire appropriate events

Methods

@:value({ useWeakReference : false, priority : 0, useCapture : false })addEventListener<T>(type:EventType<T>, listener:T ‑> Void, useCapture:Bool = false, priority:Int = 0, useWeakReference:Bool = false):Void

dispatchEvent(event:Event):Bool

hasEventListener(type:String):Bool

@:value({ useCapture : false })removeEventListener<T>(type:EventType<T>, listener:T ‑> Void, useCapture:Bool = false):Void

start(?inlineExecution:Bool):Void

Starts the process and sets up the relevant threads or event listeners 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 events are only available after the process finishes

willTrigger(type:String):Bool

Inherited Variables

Defined by AbstractProcess

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

Inherited Methods

Defined by AbstractProcess

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)

@: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.