summaryrefslogtreecommitdiff
path: root/ACE/ace/Cached_Connect_Strategy_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-07-13 14:33:08 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-07-13 14:33:08 +0000
commit240e17d38df8550e3a2d70842966abc73ffc52e6 (patch)
tree542f66d06e2674277d98f47578ae56241aa2f227 /ACE/ace/Cached_Connect_Strategy_T.h
parentf815455e70cef275645731cdf92741d6043b0997 (diff)
downloadATCD-240e17d38df8550e3a2d70842966abc73ffc52e6.tar.gz
Tue Jul 13 14:33:23 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Cached_Connect_Strategy_T.h: * ace/Capabilities.h: Doxygen fixes
Diffstat (limited to 'ACE/ace/Cached_Connect_Strategy_T.h')
-rw-r--r--ACE/ace/Cached_Connect_Strategy_T.h31
1 files changed, 16 insertions, 15 deletions
diff --git a/ACE/ace/Cached_Connect_Strategy_T.h b/ACE/ace/Cached_Connect_Strategy_T.h
index 2ca4cf3cd31..6f96923feb3 100644
--- a/ACE/ace/Cached_Connect_Strategy_T.h
+++ b/ACE/ace/Cached_Connect_Strategy_T.h
@@ -116,12 +116,12 @@ protected:
/// Add to cache (non-locking version).
virtual int cache_i (const void *recycling_act);
- /// Get/Set <recycle_state> (non-locking version).
+ /// Get/Set recycle_state (non-locking version).
virtual int recycle_state_i (const void *recycling_act,
ACE_Recyclable_State new_state);
virtual ACE_Recyclable_State recycle_state_i (const void *recycling_act) const;
- /// Cleanup hint and reset <*act_holder> to zero if <act_holder != 0>.
+ /// Cleanup hint and reset @c *act_holder to zero if @a act_holder != 0.
virtual int cleanup_hint_i (const void *recycling_act,
void **act_holder);
@@ -184,19 +184,20 @@ protected:
/**
* @class ACE_Bounded_Cached_Connect_Strategy
*
- * @brief A connection strategy which caches connections to peers
- * (represented by SVC_HANDLER instances), thereby allowing
- * subsequent re-use of unused, but available, connections.
- * This strategy should be used when the cache is bounded by
- * maximum size.
+ * @brief
+ * A connection strategy which caches connections to peers
+ * (represented by SVC_HANDLER instances), thereby allowing
+ * subsequent re-use of unused, but available, connections.
+ * This strategy should be used when the cache is bounded by
+ * maximum size.
*
- * <Bounded_Cached_Connect_Strategy> is intended to be used as a
- * plug-in connection strategy for ACE_Strategy_Connector.
- * It's added value is re-use of established connections and
- * tweaking the role of the cache as per the caching strategy.
- * Thanks to Edan Ayal <edana@bandwiz.com> for contributing this
- * class and Susan Liebeskind <shl@janis.gtri.gatech.edu> for
- * brainstorming about it.
+ * Bounded_Cached_Connect_Strategy is intended to be used as a
+ * plug-in connection strategy for ACE_Strategy_Connector.
+ * It's added value is re-use of established connections and
+ * tweaking the role of the cache as per the caching strategy.
+ * Thanks to Edan Ayal <edana@bandwiz.com> for contributing this
+ * class and Susan Liebeskind <shl@janis.gtri.gatech.edu> for
+ * brainstorming about it.
*/
template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1,
class CACHING_STRATEGY, class ATTRIBUTES,
@@ -244,7 +245,7 @@ protected:
protected:
- /// max items in the cache, used as a bound for the creation of svc_handlers.
+ /// Max items in the cache, used as a bound for the creation of svc_handlers.
size_t max_size_;
};