The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Fsdb::Support::Pipe - extend IO::Pipe for threaded use

SYNOPSIS

use Fsdb::Support::Pipe;
my $pipe = new IO::Pipe;
$read_end = $pipe->read_end();
$write_end = $pipe->write_end();

This package provides functions to let one pick out parts of the pipe from IO::Pipe without disturbing the other side. It depends on IO::Pipe internals.