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

updated inotify-tools (3.20.2.2 -> 3.22.1.0)
author Hans-G?nter Theisgen
date Fri Mar 11 16:18:25 2022 +0100 (2022-03-11)
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.