Plack::Server::Standalone::Prefork - DEPRECATED use Starman or Starlet instead


Plack documentation Contained in the Plack distribution.

Index


Code Index:

NAME

Top

Plack::Server::Standalone::Prefork - DEPRECATED use Starman or Starlet instead

DESCRIPTION

Top

This module is deprecated.

SEE ALSO

Top

HTTP::Server::PSGI Starman Starlet


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__