Singleton Pattern: it involves only one class which is responsible to instantiate itself, to make sure it creates not more than one instance; in the same time it provides a global point of access to that instance. Below implementation is a step forward with aim to make it generic so as to decouple it from …
Continue reading “Singleton Pattern: Generics Way”