Form::Factory::Stasher - An object responsible for remembering things


Form-Factory documentation Contained in the Form-Factory distribution.

Index


Code Index:

NAME

Top

Form::Factory::Stasher - An object responsible for remembering things

VERSION

Top

version 0.020

DESCRIPTION

Top

A stasher remembers things.

ROLE METHODS

Top

stash

  $stasher->stash($key, $hashref);

Given a $key to store it under and a $hashref to store. Remember the given information for recall with unstash.

unstash

  my $hashref = $stasher->unstash($key);

Given a $key, recall a previously stored $hashref.

SEE ALSO

Top

Form::Factory::Stasher::Memory

AUTHOR

Top

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

COPYRIGHT AND LICENSE

Top


Form-Factory documentation Contained in the Form-Factory distribution.

package Form::Factory::Stasher;
BEGIN {
  $Form::Factory::Stasher::VERSION = '0.020';
}
use Moose::Role;

requires qw( stash unstash );

1;