wok diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-class-singleton/description.txt	Fri Mar 11 16:18:25 2022 +0100
     1.3 @@ -0,0 +1,11 @@
     1.4 +This is the Class::Singleton module.
     1.5 +A Singleton describes an object class that can have only one
     1.6 +instance in any system.
     1.7 +An example of a Singleton might be a print spooler or system
     1.8 +registry.
     1.9 +This module implements a Singleton class from which other
    1.10 +classes can be derived. By itself, the Class::Singleton module
    1.11 +does very little other than manage the instantiation of a
    1.12 +single object. In deriving a class from Class::Singleton,
    1.13 +your module will inherit the Singleton instantiation method and
    1.14 +can implement whatever specific functionality is required.