
Catalyst::Engine::HTTP::POE - Catalyst HTTP POE Engine

A script using the Catalyst::Engine::HTTP::POE module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP::POE' }
use strict;
use lib '/path/to/MyApp/lib';
use MyApp;
MyApp->run;

This the Catalyst engine use POE::Component::Server::HTTP.

This class overloads some methods from Catalyst::Engine::HTTP::Base.

Catalyst, Catalyst::Engine, Catalyst::Engine::HTTP::Base, POE::Component::Server::HTTP.

Christian Hansen, ch@ngmedia.com

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.