| POE-Filter-JSON documentation | view source | Contained in the POE-Filter-JSON distribution. |
POE::Filter::JSON - A POE filter using JSON
use POE::Filter::JSON;
my $filter = POE::Filter::JSON->new(
json_any => {
allow_nonref => 1, # see the new() method docs
},
delimiter => 0,
);
my $obj = { foo => 1, bar => 2 };
my $json_array = $filter->put( [ $obj ] );
my $obj_array = $filter->get( $json_array );
use POE qw( Filter::Stackable Filter::Line Filter::JSON );
my $filter = POE::Filter::Stackable->new();
$filter->push(
POE::Filter::JSON->new( delimiter => 0 ),
POE::Filter::Line->new(),
);
POE::Filter::JSON provides a POE filter for performing object conversion using JSON. It is suitable for use with POE::Filter::Stackable. Preferably with POE::Filter::Line.
David Davis <xantus@cpan.org>
Artistic
| POE-Filter-JSON documentation | view source | Contained in the POE-Filter-JSON distribution. |