System.Generics.Defaults.TSingletonImplementation

From RAD Studio API Documentation
Jump to: navigation, search

System.TNoRefCountObjectSystem.TObjectTSingletonImplementation

Delphi

TSingletonImplementation = class(TNoRefCountObject)

C++

class PASCALIMPLEMENTATION TSingletonImplementation : public System::TNoRefCountObject

Properties

Type Visibility Source Unit Parent
class public
System.Generics.Defaults.pas
System.Generics.Defaults.hpp
System.Generics.Defaults System.Generics.Defaults

Description

TSingletonImplementation is a base for simple classes that need a basic IInterface implementation, with reference counting disabled.

TSingletonImplementation is a thread-safe base class for Delphi classes that support interfaces. Unlike TInterfacedObject, TSingletonImplementation does not implement reference counting.

TSingletonImplementation is particularly useful when you have to create a singleton object that will not be destroyed when all references to it are lost.

See Also