wok annotate perl-class-singleton/description.txt @ rev 24985

Add python-future
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 10 07:46:58 2022 +0000 (2022-05-10)
parents
children
rev   line source
Hans-G?nter@24185 1 This is the Class::Singleton module.
Hans-G?nter@24185 2 A Singleton describes an object class that can have only one
Hans-G?nter@24185 3 instance in any system.
Hans-G?nter@24185 4 An example of a Singleton might be a print spooler or system
Hans-G?nter@24185 5 registry.
Hans-G?nter@24185 6 This module implements a Singleton class from which other
Hans-G?nter@24185 7 classes can be derived. By itself, the Class::Singleton module
Hans-G?nter@24185 8 does very little other than manage the instantiation of a
Hans-G?nter@24185 9 single object. In deriving a class from Class::Singleton,
Hans-G?nter@24185 10 your module will inherit the Singleton instantiation method and
Hans-G?nter@24185 11 can implement whatever specific functionality is required.