#include "ace/Recyclable.inl"

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.
{
/// Idle and can be purged.
ACE_RECYCLABLE_IDLE_AND_PURGABLE,
/// Idle but cannot be purged.
ACE_RECYCLABLE_IDLE_BUT_NOT_PURGABLE,
/// Can be purged, but is not idle (mostly for debugging).
ACE_RECYCLABLE_PURGABLE_BUT_NOT_IDLE,
/// Busy (i.e., cannot be recycled or purged).
ACE_RECYCLABLE_BUSY,
/// Closed.
ACE_RECYCLABLE_CLOSED,
/// Unknown state.
ACE_RECYCLABLE_UNKNOWN
};
1.7.0