Pipe object
The Pipe object lets you run another program and exchange data with it through its input and output streams
| Methods | Description | Return value |
|---|---|---|
| Pipe:close() | Close the associated process | - |
| Pipe:constructor() | Pipe object constructor | |
| Pipe:read() | Read data asynchronously from the pipe (from associated process output stream) | |
| Pipe:write() | Write data to the pipe (towards associated process input stream) | - |