Process::Storable - Storable-based implementation of Process::Serializable


Process documentation  | view source Contained in the Process distribution.

Index


NAME

Top

Process::Storable - Storable-based implementation of Process::Serializable

SYNOPSIS

Top

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

Top

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 the new, prepare, run rules of Process::Serializable.

SUPPORT

Top

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

Top

Adam Kennedy <adamk@cpan.org>

SEE ALSO

Top

http://ali.as/

COPYRIGHT

Top


Process documentation  | view source Contained in the Process distribution.