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

use POE::Filter::LZO;
my $filter = POE::Filter::LZO->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::LZO);
my ($filter) = POE::Filter::Stackable->new();
$filter->push( POE::Filter::LZO->new(),
POE::Filter::Line->new( InputRegexp => '\015?\012', OutputLiteral => "\015\012" ),

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

newCreates a new POE::Filter::LZO object. Takes one optional argument, 'level': the level of compression to employ. Consult Compress::LZO for details.

get_one_start
get_one
getTakes an arrayref which is contains lines of compressed input. Returns an arrayref of decompressed lines.
putTakes an arrayref containing lines of uncompressed output, returns an arrayref of compressed lines.
cloneMakes a copy of the filter, and clears the copy's buffer.
levelSets the level of compression employed to the given value. If no value is supplied, returns the current level setting.

Chris BinGOs Williams <chris@bingosnet.co.uk>

Copyright © Chris Williams
This module may be used, modified, and distributed under the same terms as Perl itself. Please see the license that came with your Perl distribution for details.
