NAME

Dye - Dye water in a pipeline

SYNOPSIS

use Dye;
use Pipeline;
use Tap;
my $pipeline = Pipeline->new();
$pipeline->add_segment(
  Tap->new(type => 'in'  ),
  Dye->new( ink => 'blue'),
  Tap->new(type => 'out' ),
);

DESCRIPTION

Dye is a module used by the Pipeline tests and is a Pipeline::Segment. It represents a part of a pipeline which contains a dye, dyeing the water a colour.

AUTHOR

Leon Brocard <leon@fotango.com>

COPYRIGHT

Copyright 2003 Fotango Ltd. All Rights Reserved.

This software is released under the same terms as Perl itself.