| Catalyst::Engine::HTTP - Catalyst HTTP Engine |
finalize_headers($c)finalize_read($c)prepare_read($c)
Catalyst::Engine::HTTP - Catalyst HTTP Engine
A script using the Catalyst::Engine::HTTP module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP' }
use strict;
use lib '/path/to/MyApp/lib';
use MyApp;
MyApp->run;
This is the Catalyst engine specialized for development and testing.
finalize_headers($c)
finalize_read($c)
prepare_read($c)
Writes the buffer to the client.
Options hash passed to the http engine to control things like if keepalive is supported.
Catalyst, the Catalyst::Engine manpage
Catalyst Contributors, see Catalyst.pm
Many parts are ripped out of HTTP::Server::Simple by Jesse Vincent.
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst::Engine::HTTP - Catalyst HTTP Engine |