add $c->finalize_error and improve $c->finalize
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Apache / MP2.pm
CommitLineData
479d2af4 1package Catalyst::Engine::Apache::MP2;
2
3use strict;
4use base 'Catalyst::Engine::Apache';
5
6use Apache2 ();
7use Apache::Connection ();
8use Apache::RequestIO ();
9use Apache::RequestRec ();
10use Apache::RequestUtil ();
11use Apache::Request ();
12use Apache::Cookie ();
13use Apache::Upload ();
14use Apache::URI ();
15use APR::URI ();
16
17sub handler : method { shift->SUPER::handler(@_) }
18
19=head1 NAME
20
21Catalyst::Engine::Apache::MP2 - Catalyst Apache MP2 Engine
22
23=head1 SYNOPSIS
24
25See L<Catalyst>.
26
27=head1 DESCRIPTION
28
29This is the Catalyst engine specialized for Apache mod_perl version 2.
30
31=head1 OVERLOADED METHODS
32
33This class overloads some methods from C<Catalyst::Engine::Apache>.
34
35=over 4
36
37=item $c->handler
38
39=back
40
41=head1 SEE ALSO
42
43L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::Apache>.
44
45=head1 AUTHOR
46
47Sebastian Riedel, C<sri@cpan.org>
48
49=head1 COPYRIGHT
50
51This program is free software, you can redistribute it and/or modify it under
52the same terms as Perl itself.
53
54=cut
55
561;