NAME
Form::Factory::Feature::Role::PostProcess - features that run just after processing
VERSION
version 0.006
SYNOPSIS
package MyApp::Feature::Qux;
our $VERSION = '0.006';
use Moose;
with qw(
Form::Factory::Feature
Form::Factory::Feature::Role::PostProcess
);
sub post_process {
my $self = shift;
MyApp::Logger->info('Ending the process.');
}
DESCRIPTION
Features that run something immediately after the action runs may implement this role. This feature will run after the action does whether it succeeds or not. It will not run if an exception is thrown.
AUTHOR
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
COPYRIGHT AND LICENSE
Copyright 2009 Qubling Software LLC.
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.