NAME
WWW::Session::Serialization::JSON - Serialization engine for WWW::Session with JSON backend
VERSION
Version 0.04
SYNOPSIS
This module handles serialization for WWW::Session objects
The object implements two main methods : serialize() and expand()
use WWW::Session::Serialization::JSON;
my $serializer = WWW::Session::Serialization::JSON->new();
...
$string = $serializer->serialize($structure);
...
$structure = $serializer->expand($string);
SUBROUTINES/METHODS
new
Creates a new WWW::Session::Serialization::JSON object
Usage :
my $serializer = WWW::Session::Serialization::JSON->new();
No arguments required.
serialize
Serializes a structure and returns a string containing all the data
expand
Deserializes string and returns a structure containing all the data
AUTHOR
Gligan Calin Horea, <gliganh at gmail.com>
BUGS
Please report any bugs or feature requests to bug-www-session at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Session. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc WWW::Session::Serialization::JSON
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2012 Gligan Calin Horea.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.