| Previous | Next
IO::PipeProvides an interface for creating pipes between processes.
$pipe = new IO::Pipe([readfh, writefh]) Constructor. Creates an IO::Pipe object, which is a reference to a newly created symbol. The two optional arguments should be objects blessed into IO::Handle or one of its subclasses. These objects are used for the system call to
$pipe->handles( ) Called during construction by
$pipe->reader([args]) Object is reblessed into a subclass of IO::Handle and becomes a handle at the reading end of the pipe. If there are any
$pipe->writer([args]) The object is reblessed into a subclass of IO::Handle and becomes a handle at the writing end of the pipe. If there are any |