#include <Singleton.h>
Inheritance diagram for ACE_TSS_Singleton
Public Methods | |
virtual void | cleanup (void *param = 0) |
Cleanup method, used by to destroy the singleton. | |
Static Public Methods | |
TYPE* | instance (void) |
Global access point to the Singleton. | |
void | dump (void) |
Dump the state of the object. | |
Protected Methods | |
ACE_TSS_Singleton (void) | |
Default constructor. | |
ACE_TSS_TYPE (TYPE) instance_ | |
Contained instance. | |
Static Protected Methods | |
ACE_TSS_Singleton<TYPE, ACE_LOCK>*& | instance_i (void) |
Get pointer to the TSS Singleton instance. | |
Static Protected Attributes | |
ACE_TSS_Singleton<TYPE, ACE_LOCK>* | singleton_ = 0 |
Pointer to the Singleton (ACE_Cleanup) instance. |
This implementation is another variation on the GoF Singleton pattern. In this case, a single > instance is allocated here, not a <TYPE> instance. Each call to the <instance> static method returns a Singleton whose pointer resides in thread-specific storage. As with , we use the so that the Singleton can be cleaned up when the process exits. For this scheme to work, a (static) <cleanup> function must be provided. provides one so that TYPE doesn't need to.
|
Default constructor.
|
|
Contained instance.
|
|
Cleanup method, used by to destroy the singleton.
Reimplemented from ACE_Cleanup. |
|
Dump the state of the object.
Reimplemented in ACE_Unmanaged_TSS_Singleton. |
|
Global access point to the Singleton.
Reimplemented in ACE_Unmanaged_TSS_Singleton. |
|
Get pointer to the TSS Singleton instance.
Reimplemented in ACE_Unmanaged_TSS_Singleton. |
|
Pointer to the Singleton (ACE_Cleanup) instance.
Reimplemented in ACE_Unmanaged_TSS_Singleton. |