#include <ESF_Proxy_List.h>
Public Types | |
typedef ACE_Unbounded_Set < PROXY * > | Implementation |
A typedef for the underlying implementaiton class. | |
typedef ACE_Unbounded_Set_Iterator < PROXY * > | Iterator |
A typedef for the underlying iterator. | |
Public Member Functions | |
TAO_ESF_Proxy_List (void) | |
Constructor. | |
ACE_Unbounded_Set_Iterator < PROXY * > | begin (void) |
ACE_Unbounded_Set_Iterator < PROXY * > | end (void) |
Return one past the last element in the collection. | |
size_t | size (void) const |
Return the number of elements in the collection. | |
void | connected (PROXY *) |
Insert a new element to the collection. | |
void | reconnected (PROXY *) |
Insert a new element that could be there already. | |
void | disconnected (PROXY *) |
Remove an element from the collection. | |
void | shutdown (void) |
Private Attributes | |
ACE_Unbounded_Set< PROXY * > | impl_ |
The underlying implementation object. |
Based on the ACE_Unbounded_Set<> collection, used a double linked list internally.
typedef ACE_Unbounded_Set<PROXY*> TAO_ESF_Proxy_List< PROXY >::Implementation |
A typedef for the underlying implementaiton class.
typedef ACE_Unbounded_Set_Iterator<PROXY*> TAO_ESF_Proxy_List< PROXY >::Iterator |
A typedef for the underlying iterator.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_ESF_Proxy_List< PROXY >::TAO_ESF_Proxy_List | ( | void | ) | [inline] |
Constructor.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE ACE_Unbounded_Set_Iterator< PROXY * > TAO_ESF_Proxy_List< PROXY >::begin | ( | void | ) | [inline] |
Return the first element in the collection, or end() if there are none
ACE_INLINE ACE_Unbounded_Set_Iterator< PROXY * > TAO_ESF_Proxy_List< PROXY >::end | ( | void | ) | [inline] |
Return one past the last element in the collection.
ACE_INLINE size_t TAO_ESF_Proxy_List< PROXY >::size | ( | void | ) | const [inline] |
Return the number of elements in the collection.
void TAO_ESF_Proxy_List< PROXY >::connected | ( | PROXY * | proxy | ) | [inline] |
Insert a new element to the collection.
void TAO_ESF_Proxy_List< PROXY >::reconnected | ( | PROXY * | proxy | ) | [inline] |
Insert a new element that could be there already.
void TAO_ESF_Proxy_List< PROXY >::disconnected | ( | PROXY * | proxy | ) | [inline] |
Remove an element from the collection.
void TAO_ESF_Proxy_List< PROXY >::shutdown | ( | void | ) | [inline] |
Shutdown the collection, i.e. remove all elements and release resources
ACE_Unbounded_Set<PROXY*> TAO_ESF_Proxy_List< PROXY >::impl_ [private] |
The underlying implementation object.