-
-
27 Oct 2011 00:35:59 UTC
- Distribution: Process
- Module version: 0.30
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Clone repository
- Issues (0)
- Testers (1075 / 0 / 1)
- Kwalitee
Bus factor: 1- 75.38% Coverage
- License: perl_5
- Perl: v5.5.30
- Activity
24 month- Tools
- Download (46.14KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
Process::Storable - Storable-based implementation of Process::Serializable
SYNOPSIS
Create your package...
package MyStorable; use base qw{Process::Storable Process}; sub prepare { ... } sub run { ... } 1;
And then use it...
use MyStorable; my $process = MyStorable->new( ... ); $process->serialize( 'filename.dat' ); # and so on...
DESCRIPTION
Process::Storable
provides an implementation of the Process::Serializable role using the standard Storable module from the Perl core. It is not itself a subclass of Process so you will need to inherit from both Process (or a subclass) and Process::Storable if you want to make use of it.Objects that inherit from
Process::Storable
must follow thenew
,prepare
,run
rules of Process::Serializable.SUPPORT
Bugs should be reported via the CPAN bug tracker at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Process
For other issues, contact the author.
AUTHOR
Adam Kennedy <adamk@cpan.org>
SEE ALSO
COPYRIGHT
Copyright 2006 - 2011 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
Module Install Instructions
To install Process, copy and paste the appropriate command in to your terminal.
cpanm Process
perl -MCPAN -e shell install Process
For more information on module installation, please visit the detailed CPAN module installation guide.