ProcessChain

Represents a chain of processes with each member piping its stdout into the next members stdin.

Members

Functions

end
std.stdio.File end()

Returns stdout for the last process in the chain.

run
ProcessChain run(string[] args)

Adds a new process in the chain.

wait
int[] wait()

Waits for all processes in the chain to exit and returns an array of exit codes.

Variables

members
Process*[] members;

Undocumented in source.

Meta