NAME

POE::Filter::LZF - A POE filter wrapped around Compress::LZF

SYNOPSIS

    use POE::Filter::LZF;

    my $filter = POE::Filter::LZF->new();
    my $scalar = 'Blah Blah Blah';
    my $compressed_array   = $filter->put( [ $scalar ] );
    my $uncompressed_array = $filter->get( $compressed_array );

    use POE qw(Filter::Stackable Filter::Line Filter::LZF);

    my ($filter) = POE::Filter::Stackable->new();
    $filter->push( POE::Filter::LZF->new(),
		   POE::Filter::Line->new( InputRegexp => '\015?\012', OutputLiteral => "\015\012" ),

DESCRIPTION

POE::Filter::LZF provides a POE filter for performing compression/decompression using Compress::LZF. It is suitable for use with POE::Filter::Stackable.

CONSTRUCTOR

new

Creates a new POE::Filter::LZF object.

METHODS

get_one_start =item get_one =item get

Takes an arrayref which is contains lines of compressed input. Returns an arrayref of decompressed lines.

put

Takes an arrayref containing lines of uncompressed output, returns an arrayref of compressed lines.

AUTHOR

Chris Williams <chris@bingosnet.co.uk>

SEE ALSO

POE

Compress::LZF

POE::Filter::Stackable