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.
Returns the size of the instance
$named_pipe->BufferSize( )
of the buffer of the named pipe.
Closes the named pipe.
$named_pipe->Close
Tells the named pipe to create
$named_pipe->Connect
an instance of the named pipe and wait until a client connects.
Returns true on success, false on failure.
Disconnects
$named_pipe->Disconnect
(and destroys) the instance of the named pipe from the client.
Returns true on success, false on failure.
Returns
$named_pipe->Error
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.
Reads from the named pipe.
$named_pipe->Read
Returns data read from the pipe on success, undef
on failure.
Sets
$named_pipe->ResizeBuffer(SIZE)
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.
Writes
$named_pipe->Write(DATA)
DATA to the named pipe. Returns true on
success, false on failure.