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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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

22.13. Win32::Pipe


This module gives Win32 Perl the
ability to use named pipes. Under Windows NT, named pipes are used
for processes to communicate with one another, and are not limited to
the local machine.

Named pipes are created with new, which makes a
new Win32::Pipe object and returns true on success.
new has the following syntax:

my $named_pipe = Win32::Pipe->new($pipe_name);

22.13.1. Win32::Pipe Methods


The following methods are provided for objects of created by
Win32::Pipe.


$named_pipe->BufferSize( )

Returns the size of the instance
of the buffer of the named pipe.


$named_pipe->Close

Closes the named pipe.


$named_pipe->Connect

Tells the named pipe to create
an instance of the named pipe and wait until a client connects.
Returns true on success, false on failure.


$named_pipe->Disconnect

Disconnects
(and destroys) the instance of the named pipe from the client.
Returns true on success, false on failure.


$named_pipe->Error

Returns
the last error messages pertaining to the named pipe, if used in
context to the package. Returns a list containing ERROR_NUMBER and
ERROR_TEXT.


$named_pipe->Read

Reads from the named pipe.
Returns data read from the pipe on success, undef
on failure.


$named_pipe->ResizeBuffer(SIZE)

Sets
the size of the buffer of the instance of the named pipe to
SIZE. Returns the size of the buffer on
success, false on failure.


$named_pipe->Write(DATA)

Writes
DATA to the named pipe. Returns true on
success, false on failure.

/ 875