NAME
Form::Factory::Feature::Role::PostProcess - features that run just after processing
VERSION
version 0.021
SYNOPSIS
package MyApp::Feature::Qux;
use Moose;
with qw(
Form::Factory::Feature
Form::Factory::Feature::Role::PostProcess
);
sub post_process {
my $self = shift;
MyApp::Logger->info('Ending the process.');
}
package Form::Factory::Feature::Custom::Qux;
sub register_implementation { 'MyApp::Feature::Qux' }
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.
ROLE METHOD
post_process
This method is called immediately after the run
method is called. It is passed no arguments other than the feature object it is called upon. It's return value is ignored.
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.