package Catalyst::Engine::Server::Fork; use strict; use base 'Catalyst::Engine::Server::Base'; =head1 NAME Catalyst::Engine::Server::Fork - Catalyst Server Engine =head1 SYNOPSIS A script using the Catalyst::Engine::Server::Fork module might look like: #!/usr/bin/perl -w BEGIN { $ENV{CATALYST_ENGINE} = 'Server::Fork'; } use strict; use lib '/path/to/MyApp/lib'; use MyApp; MyApp->run; =head1 DESCRIPTION This Catalyst engine specialized for standalone deployment. =head1 OVERLOADED METHODS This class overloads some methods from C. =over 4 =item $c->run =cut sub run { my $class = shift; my $server = Catalyst::Engine::Server::Net::Server::Fork->new; $server->application($class); $server->run(@_); } =back =head1 SEE ALSO L, L, L. =head1 AUTHOR Christian Hansen, C =head1 COPYRIGHT This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. =cut package Catalyst::Engine::Server::Net::Server::Fork; use strict; use base qw[Catalyst::Engine::Server::Net::Server Net::Server::Fork]; 1;