| Apache-Singleton documentation | Contained in the Apache-Singleton distribution. |
Apache::Singleton::Process - One instance per One Process
version 0.13
package Printer; use base qw(Apache::Singleton::Process);
See Apache::Singleton.
The development version is on github at http://github.com/mschout/apache-singleton and may be cloned from git://github.com/mschout/apache-singleton.git
Please report any bugs or feature requests to bug-apache-singleton@rt.cpan.org or through the web interface at: http://rt.cpan.org/Public/Dist/Display.html?Name=Apache-Singleton
Michael Schout <mschout@cpan.org>
This 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.
| Apache-Singleton documentation | Contained in the Apache-Singleton distribution. |
package Apache::Singleton::Process; BEGIN { $Apache::Singleton::Process::VERSION = '0.13'; } # ABSTRACT: One instance per One Process use strict; use base 'Apache::Singleton'; no strict 'refs'; sub _get_instance { my $class = shift; my $global = "$class\::_instance"; return $$global; } sub _set_instance { my($class, $instance) = @_; my $global = "$class\::_instance"; $$global = $instance; } 1;
__END__