NAME
HTTP::Balancer::Actor - the base class of actors of HTTP::Balancer
SYNOPSIS
package
HTTP::Balancer::Actor::Foo;
use
Modern::Perl;
use
Moose;
sub
start { ... }
sub
stop { ... }
1;
__DATA__
here goes the template of configuration
DESCRIPTION
The Actor in HTTP::Balancer stands for the process manager of implementations of http balancer.
Each subclass of HTTP::Balancer::Actor will be mapped to one implementation such as Perlbal or Nginx.