|
NAMEPOE::Filter::LZO - A POE filter wrapped around Compress::LZO VERSIONversion 1.72 SYNOPSIS 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" ),
DESCRIPTIONPOE::Filter::LZO provides a POE filter for performing compression/decompression using Compress::LZO. It is suitable for use with POE::Filter::Stackable. CONSTRUCTOR
METHODS
SEE ALSOPOE Compress::LZO POE::Filter::Stackable AUTHORChris Williams <chris@bingosnet.co.uk> COPYRIGHT AND LICENSEThis software is copyright (c) 2017 by Chris Williams. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|