![]() |
![]()
| ![]() |
![]()
NAMEApache::Singleton - Singleton class for mod_perl VERSIONversion 0.17 SYNOPSISpackage Printer; # default: # Request for mod_perl env # Process for non-mod_perl env use base qw(Apache::Singleton); package Printer::PerRequest; use base qw(Apache::Singleton::Request); package Printer::PerProcess; use base qw(Apache::Singleton::Process); DESCRIPTIONApache::Singleton works the same as Class::Singleton, but with various object lifetime (scope). See Class::Singleton first. OBJECT LIFETIMEBy inheriting one of the following sublasses of Apache::Singleton, you can change the scope of your object.
CREDITSOriginal idea by Matt Sergeant <matt@sergeant.org> and Perrin Harkins <perrin@elem.com>. Initial implementation and versions 0.01 to 0.07 by Tatsuhiko Miyagawa <miyagawa@bulknews.net>. SEE ALSOApache::Singleton::Request, Apache::Singleton::Process, Class::Singleton SOURCEThe development version is on github at <https://github.com/mschout/apache-singleton> and may be cloned from <git://github.com/mschout/apache-singleton.git> BUGSPlease report any bugs or feature requests to
bug-apache-singleton@rt.cpan.org or through the web interface at:
AUTHORMichael Schout <mschout@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2009 by Michael Schout. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|