Process.pout

Pipes used during execute(). They are member variables so that they can be reused by later calls to execute(). Note that any file handles created during execute() will remain open and stored in these pipes, unless they are explicitly closed.

  1. Pipe pin;
  2. Pipe pout;
    class Process
    Pipe pout;
  3. Pipe perr;
  4. Pipe pexec;

Meta