ProcessPipes

Object which contains std.stdio.File handles that allow communication with a child process through its standard streams.

Members

Properties

pid
Pid pid [@property getter]

The Pid of the child process.

stderr
File stderr [@property getter]

An std.stdio.File that allows reading from the child process' standard error stream.

stdin
File stdin [@property getter]

An std.stdio.File that allows writing to the child process' standard input stream.

stdout
File stdout [@property getter]

An std.stdio.File that allows reading from the child process' standard output stream.

Meta