| Plack documentation | Contained in the Plack distribution. |
Plack::Server::Standalone::Prefork - DEPRECATED use Starman or Starlet instead
This module is deprecated.
| Plack documentation | Contained in the Plack distribution. |
package Plack::Server::Standalone::Prefork; use strict; use parent qw(HTTP::Server::PSGI); # because Standalone is a wrapper use Carp; sub new { my $class = shift; Carp::carp "Use of $class is deprecated. Use Starman or Starlet for preforking servers."; $class->SUPER::new(@_); } 1; __END__