Process

Represents a single running process in the chain.

Constructors

this
this(string[] args, std.stdio.File upstream)

Creates a new process (and spawns it).

this
this(string[] args)

Creates a new process (and spawns it)

Members

Functions

stderr
std.stdio.File stderr()

File object of this processes stderr

stdout
std.stdio.File stdout()

File object of this processes stdout

wait
int wait()

Waits for this process to complete and returns the exit code.

Variables

_stderr
std.process.Pipe _stderr;

Undocumented in source.

_stdout
std.process.Pipe _stdout;

Undocumented in source.

pid
std.process.Pid pid;

Undocumented in source.

Meta