ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.pm
(Generate patch)

Comparing JSON-XS/XS.pm (file contents):
Revision 1.148 by root, Tue Oct 29 00:19:45 2013 UTC vs.
Revision 1.149 by root, Tue Oct 29 00:21:10 2013 UTC

1129C<allow_blessed>, C<convert_blessed> and C<allow_tags> settings, which are 1129C<allow_blessed>, C<convert_blessed> and C<allow_tags> settings, which are
1130used in this order: 1130used in this order:
1131 1131
1132=over 4 1132=over 4
1133 1133
1134=item 1. C<allow_tags> is enabled and object has a C<FREEZE> method. 1134=item 1. C<allow_tags> is enabled and the object has a C<FREEZE> method.
1135 1135
1136In this case, C<JSON::XS> uses the L<Types::Serialiser> object 1136In this case, C<JSON::XS> uses the L<Types::Serialiser> object
1137serialisation protocol to create a tagged JSON value, using a nonstandard 1137serialisation protocol to create a tagged JSON value, using a nonstandard
1138extension to the JSON syntax. 1138extension to the JSON syntax.
1139 1139
1154 my ($self, $serialiser) = @_; 1154 my ($self, $serialiser) = @_;
1155 1155
1156 ($self->{type}, $self->{id}) 1156 ($self->{type}, $self->{id})
1157 } 1157 }
1158 1158
1159=item 2. C<convert_blessed> is enabled and object has a C<TO_JSON> method. 1159=item 2. C<convert_blessed> is enabled and the object has a C<TO_JSON> method.
1160 1160
1161In this case, the C<TO_JSON> method of the object is invoked in scalar 1161In this case, the C<TO_JSON> method of the object is invoked in scalar
1162context. It must return a single scalar that can be directly encoded into 1162context. It must return a single scalar that can be directly encoded into
1163JSON. This scalar replaces the object in the JSON text. 1163JSON. This scalar replaces the object in the JSON text.
1164 1164

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines