1 SYNOPSIS
This module came into existence out of the need to be able to send I<objects>
over JSON. JSON does not allow any blessed references to be sent by default and
if sent, provides no generic w
ay to resurrect these objects again after
decoding. This can now all be done like this:
use JSON;
use Class::Storage qw(packObjects unpackObjects);
my $object = bless { a => 1 }, 'MyModu
=> 1 }
print $writeHandle encode_json($packed), "\n";
# And on the other "side":
my $jsonString = <$readHandle>;
my $packed = decode_json($jsonString);
my $unpackedObject = unpa