Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



8.129. IO::Pipe


Provides an interface for creating
pipes between processes.

new


$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. With no
arguments, the method handles is called on the new
IO::Pipe object.

handles


$pipe->handles( )

Called during construction by IO::Pipe::new on the
newly created IO::Pipe object. Returns an array of two objects
blessed into IO::Pipe::End, or a subclass.

reader


$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
args, then fork is
called, and the arguments are passed to exec.

writer


$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
args, then fork is
called, and the arguments are passed to exec.



8.128. IO::Handle8.130. IO::Seekable




Copyright © 2002 O'Reilly & Associates. All rights reserved.

/ 875