diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-18 09:36:51 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-18 09:36:51 +0000 |
commit | 9c1a3603f8104719623a49973bb6335eaa0d3b4b (patch) | |
tree | 42de5e5088ea11461a4a3dc95411791dcef36964 /ace/Caching_Strategies_T.h | |
parent | 4563598bdf3f38f2353d39be2ce88d37d16e338d (diff) | |
download | ATCD-9c1a3603f8104719623a49973bb6335eaa0d3b4b.tar.gz |
ChangeLogTag: Tue Apr 18 11:32:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Caching_Strategies_T.h')
-rw-r--r-- | ace/Caching_Strategies_T.h | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/ace/Caching_Strategies_T.h b/ace/Caching_Strategies_T.h index 6129f4d0e1d..c637119087c 100644 --- a/ace/Caching_Strategies_T.h +++ b/ace/Caching_Strategies_T.h @@ -48,8 +48,10 @@ public: /// Accessor method for the timer attributes. virtual ATTRIBUTES attributes (void) = 0; - // = Accessor methods for the percentage of entries to purge. + /// Get the percentage of entries to purge. virtual double purge_percent (void) = 0; + + /// Set the percentage of entries to purge. virtual void purge_percent (double percentage) = 0; // = Strategy related Operations @@ -118,8 +120,10 @@ public: /// Accessor method for the timer attributes. ATTRIBUTES attributes (void); - // = Accessor methods for the percentage of entries to purge. + /// Get the percentage of entries to purge. double purge_percent (void); + + /// Set the percentage of entries to purge. void purge_percent (double percentage); // = Strategy related Operations @@ -213,9 +217,10 @@ public: /// Accessor method for the timer attributes. ATTRIBUTES attributes (void); - // = Accessor methods for the percentage of entries to purge. + /// Get the percentage of entries to purge. double purge_percent (void); + /// Set the percentage of entries to purge. void purge_percent (double percentage); // = Strategy related Operations @@ -313,9 +318,10 @@ public: /// Access the attributes. ATTRIBUTES attributes (void); - // = Accessor methods for the percentage of entries to purge. + /// Get the percentage of entries to purge. double purge_percent (void); + /// Set the percentage of entries to purge. void purge_percent (double percentage); // = Strategy related Operations @@ -404,9 +410,10 @@ public: /// Accessor method. ATTRIBUTES attributes (void); - // = Accessor methods for the percentage of entries to purge. + /// Get the percentage of entries to purge. double purge_percent (void); + /// Set the percentage of entries to purge. void purge_percent (double percentage); // = Strategy related Operations @@ -480,9 +487,10 @@ public: /// Accessor method. ATTRIBUTES attributes (void); - // = Accessor methods for the percentage of entries to purge. + /// Get the percentage of entries to purge. double purge_percent (void); + /// Set the percentage of entries to purge. void purge_percent (double percentage); // = Strategy related Operations |