#include "ace/Recyclable.inl"
Include dependency graph for Recyclable.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Classes | |
class | ACE_Recyclable |
Enumerations | |
enum | ACE_Recyclable_State { ACE_RECYCLABLE_IDLE_AND_PURGABLE, ACE_RECYCLABLE_IDLE_BUT_NOT_PURGABLE, ACE_RECYCLABLE_PURGABLE_BUT_NOT_IDLE, ACE_RECYCLABLE_BUSY, ACE_RECYCLABLE_CLOSED, ACE_RECYCLABLE_UNKNOWN } |
States of a recyclable object. More... |
Definition in file Recyclable.h.
enum ACE_Recyclable_State |
States of a recyclable object.
Definition at line 25 of file Recyclable.h.
00026 { 00027 /// Idle and can be purged. 00028 ACE_RECYCLABLE_IDLE_AND_PURGABLE, 00029 00030 /// Idle but cannot be purged. 00031 ACE_RECYCLABLE_IDLE_BUT_NOT_PURGABLE, 00032 00033 /// Can be purged, but is not idle (mostly for debugging). 00034 ACE_RECYCLABLE_PURGABLE_BUT_NOT_IDLE, 00035 00036 /// Busy (i.e., cannot be recycled or purged). 00037 ACE_RECYCLABLE_BUSY, 00038 00039 /// Closed. 00040 ACE_RECYCLABLE_CLOSED, 00041 00042 /// Unknown state. 00043 ACE_RECYCLABLE_UNKNOWN 00044 };