wok annotate perl-class-singleton/description.txt @ rev 24826
updated libshout and libshout-dev (2.4.3 -> 2.4.5)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 23 17:18:45 2022 +0100 (2022-03-23) |
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. |