Process
A Process.
See also
Types
Properties
The environment that was passed.
A stream to write data to the process's standard input, or null
if Stdio.Config.stdin is not Stdio.Pipe.
The I/O configuration of the process.
Functions
Returns the exit code for which the process completed with, or null
if it has not exited yet.
Attaches a single OutputFeed to obtain stderr
output.
Attaches multiple OutputFeed to obtain stderr
output. This is handy at Process startup such that no data is missed if there are multiple feeds needing to be attached.
Returns a Waiter for stderr
in order to await any final asynchronous output after resource closure occurs.
Attaches a single OutputFeed to obtain stdout
output.
Attaches multiple OutputFeed to obtain stdout
output. This is handy at Process startup such that no data is missed if there are multiple feeds needing to be attached.
Returns a Waiter for stdout
in order to await any final asynchronous output after resource closure occurs.
Delays the current coroutine until Process completion.
Delays the current coroutine for the specified duration, or until Process.exitCode is available (i.e. the Process completed).