Supervisor::Class - A Perl extension for the Supervisor environment


Supervisor documentation Contained in the Supervisor distribution.

Index


Code Index:

NAME

Top

Supervisor::Class - A Perl extension for the Supervisor environment

SYNOPSIS

Top

 use Supervisor::Class
    version => '0.01',
    base    => 'Supervisor::Base',
   ...
 ;

DESCRIPTION

Top

This module inherits from Badger::Class and exposes the additinoal constants and utiltiy functions that are needed by the Supervisor environment.

SEE ALSO

Top

 Badger::Class

 Supervisor
 Supervisor::Base
 Supervisor::Class
 Supervisor::Constants
 Supervisor::Controller
 Supervisor::Log
 Supervisor::Process
 Supervisor::ProcessFactory
 Supervisor::Session
 Supervisor::Utils
 Supervisor::RPC::Server
 Supervisor::RPC::Client

AUTHOR

Top

Kevin Esteb, <kesteb@wsipc.org>

COPYRIGHT AND LICENSE

Top


Supervisor documentation Contained in the Supervisor distribution.

package Supervisor::Class;

use Badger::Class
  uber     => 'Badger::Class',
  constant => {
      UTILS     => 'Supervisor::Utils',
      CONSTANTS => 'Supervisor::Constants',
  }
;

1;

__END__