NAME
IPC::Manager::Serializer - Serializer base class for IPC::Manager.
DESCRIPTION
Interface to Serielize and deserialize message payloads.
SYNOPSIS
package IPC::Manager::Serializer::MySerializer;
use parent 'IPC::Manager::Serializer';
sub serialize { ... }
sub deserialize { ... }
1;
METHODS
- $string = IPC::Manager::Serializer->serialize($obj)
-
Serialize an object.
- $obj = IPC::Manager::Serializer->deserialize($string)
-
Deserialize an object.
SOURCE
The source code repository for IPC::Manager can be found at https://https://github.com/exodist/IPC-Manager.
MAINTAINERS
AUTHORS
COPYRIGHT
Copyright Chad Granum <exodist7@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See https://dev.perl.org/licenses/
2 POD Errors
The following errors were encountered while parsing the POD:
- Around line 51:
Expected text after =item, not a bullet
- Around line 53:
You forgot a '=back' before '=head1'