Catalyst::Engine::HTTP::Daemon - Catalyst HTTP Daemon Engine |
Catalyst::Engine::HTTP::Daemon - Catalyst HTTP Daemon Engine
A script using the Catalyst::Engine::HTTP::Daemon module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP::Daemon' }
use strict; use lib '/path/to/MyApp/lib'; use MyApp;
MyApp->run;
This is the Catalyst engine specialized for development and testing.
This class overloads some methods from Catalyst::Engine::HTTP::Base
.
Catalyst, the Catalyst::Engine manpage, the Catalyst::Engine::HTTP::Base manpage, the HTTP::Daemon manpage.
Sebastian Riedel, sri@cpan.org
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.
Catalyst::Engine::HTTP::Daemon - Catalyst HTTP Daemon Engine |