blob: 709c9d45a3f94380ec86c5c193894b57f37f1d76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// -*- C++ -*-
//=============================================================================
/**
* @file Recyclable.h
*
* $Id$
*
* @author Doug Schmidt
*/
//=============================================================================
#ifndef ACE_RECYCLABLE_H
#define ACE_RECYCLABLE_H
#include /**/ "ace/pre.h"
#include "ace/ACE_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/// States of a recyclable object.
enum ACE_Recyclable_State
{
/// 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
};
/**
* @class ACE_Recyclable
*
* @brief
*
*
*/
class ACE_Export ACE_Recyclable
{
public:
/// Destructor.
virtual ~ACE_Recyclable (void);
/// Get the recyclable bit
ACE_Recyclable_State recycle_state (void) const;
/// Set the recyclable bit
void recycle_state (ACE_Recyclable_State new_state);
protected:
/// Protected constructor.
ACE_Recyclable (ACE_Recyclable_State initial_state);
/// Our state.
ACE_Recyclable_State recycle_state_;
};
#if defined (__ACE_INLINE__)
#include "ace/Recyclable.inl"
#endif /* __ACE_INLINE __ */
#include /**/ "ace/post.h"
#endif /*ACE_RECYCLABLE_STATE_H*/
|