| Server-Control documentation | view source | Contained in the Server-Control distribution. |
Server::Control::NetServer -- apachectl style control for Net::Server servers
version 0.15
package My::Server;
use base qw(Net::Server);
sub process_request {
#...code...
}
---
use Server::Control::NetServer;
my $ctl = Server::Control::NetServer->new(
net_server_class => 'My::Server',
net_server_params => {
pid_file => '/path/to/server.pid',
port => 5678,
log_file => '/path/to/file.log'
}
);
if ( !$ctl->is_running() ) {
$ctl->start(...);
}
Server::Control::NetServer is a subclass of
Server::Control for Net::Server servers.
The constructor options are as described in Server::Control, except for:
Required. Specifies a Net::Server subclass. Will be loaded if not already.
Specifies a hashref of parameters to pass to the server's run() method.
Will be taken from net_server_params.
Will be taken from net_server_params.
If not provided, will attempt to get from log_file key in
net_server_params.
This software is copyright (c) 2011 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Server-Control documentation | view source | Contained in the Server-Control distribution. |