summaryrefslogtreecommitdiff
path: root/ace/Caching_Utility_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Caching_Utility_T.h')
-rw-r--r--ace/Caching_Utility_T.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/ace/Caching_Utility_T.h b/ace/Caching_Utility_T.h
index 03b95ce3cd1..0112e3f2b7d 100644
--- a/ace/Caching_Utility_T.h
+++ b/ace/Caching_Utility_T.h
@@ -27,6 +27,8 @@
// For linkers that cant grok long names.
#define ACE_Pair_Caching_Utility APUTIL
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
/**
* @class ACE_Pair_Caching_Utility
*
@@ -34,7 +36,7 @@
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. Note: This
+ * decides and purges the entry from the container. @note This
* class helps in the caching_strategies using a container
* containing entries of <KEY, ACE_Pair<VALUE, attributes>>
* kind. The attributes helps in deciding the entries to be
@@ -90,7 +92,7 @@ protected:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. Note: This
+ * decides and purges the entry from the container. @note This
* class helps in the caching_strategies using a container
* containing entries of <KEY, Svc_Handler> kind. The attributes
* helps in deciding the entries to be purged. The
@@ -149,7 +151,7 @@ private:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: clear_cache () method which
- * decides and purges the entry from the container. Note: This
+ * decides and purges the entry from the container. @note This
* class helps in the caching_strategies using a container
* containing entries of <Refcounted_KEY,
* Recyclable_Connection_Handler> kind. The attributes helps in
@@ -215,7 +217,7 @@ private:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. Note: This
+ * decides and purges the entry from the container. @note This
* class helps in the caching_strategies using a container
* containing entries of <KEY, HANDLER> kind where the HANDLER
* contains the caching attributes which help in deciding the
@@ -278,7 +280,7 @@ private:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. Note: This
+ * decides and purges the entry from the container. @note This
* class is be used with the Null_Caching_Strategy. The
* Cleanup_Strategy is the callback class to which the entries to
* be cleaned up will be delegated.
@@ -301,7 +303,7 @@ public:
/**
* Purge entries from the <container>. The Cleanup_Strategy will do
* the actual job of cleanup once the entries to be cleaned up are
- * decided. Note: Here it is a no-op.
+ * decided. @note Here it is a no-op.
*/
int clear_cache (CONTAINER &container,
double purge_percent);
@@ -312,7 +314,7 @@ protected:
* Find the entry with minimum caching attributes. This is handler
* specific since this utility is to be used very specifically for
* handler who have caching_attributes for server side acched
- * connection management.Note: Here it is a no-op.
+ * connection management.@note Here it is a no-op.
*/
void minimum (CONTAINER &container,
KEY *&key_to_remove,
@@ -330,6 +332,8 @@ private:
ACE_UNIMPLEMENTED_FUNC (ACE_Null_Caching_Utility (const ACE_Null_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &))
};
+ACE_END_VERSIONED_NAMESPACE_DECL
+
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "ace/Caching_Utility_T.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */