#include <Caching_Utility_T.h>
| Public Types | |
| typedef ACE_Null_Cleanup_Strategy< KEY, VALUE, CONTAINER > | CLEANUP_STRATEGY | 
| typedef ACE_Cleanup_Strategy< KEY, VALUE, CONTAINER > | CLEANUP_STRATEGY_BASE | 
| Public Member Functions | |
| ACE_Null_Caching_Utility (ACE_Cleanup_Strategy< KEY, VALUE, CONTAINER > *cleanup_strategy=0, int delete_cleanup_strategy=0) | |
| Constructor. | |
| ~ACE_Null_Caching_Utility (void) | |
| Destructor. | |
| int | clear_cache (CONTAINER &container, double purge_percent) | 
| Protected Member Functions | |
| void | minimum (CONTAINER &container, KEY *&key_to_remove, VALUE *&value_to_remove) | 
| Protected Attributes | |
| CLEANUP_STRATEGY_BASE * | cleanup_strategy_ | 
| int | delete_cleanup_strategy_ | 
| Whether the cleanup_strategy should be destroyed or not. | |
| Private Member Functions | |
| void | operator= (const ANUTIL< KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES > &) | 
| ANUTIL (const ANUTIL< KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES > &) | |
This class defines the methods commonly used by the different caching strategies. For instance: method which decides and purges the entry from the container.
Definition at line 289 of file Caching_Utility_T.h.
| 
 | |||||
| 
 Definition at line 293 of file Caching_Utility_T.h. | 
| 
 | |||||
| 
 Definition at line 294 of file Caching_Utility_T.h. | 
| 
 | ||||||||||||||||
| Constructor. 
 Definition at line 457 of file Caching_Utility_T.cpp. References ACE_NEW. 
 00459 : cleanup_strategy_ (cleanup_strategy), 00460 delete_cleanup_strategy_ (delete_cleanup_strategy) 00461 { 00462 if (cleanup_strategy == 0) 00463 { 00464 ACE_NEW (this->cleanup_strategy_, 00465 CLEANUP_STRATEGY); 00466 this->delete_cleanup_strategy_ = 1; 00467 } 00468 } | 
| 
 | ||||||||||
| Destructor. 
 Definition at line 471 of file Caching_Utility_T.cpp. 
 00472 {
00473   if (this->delete_cleanup_strategy_)
00474     delete this->cleanup_strategy_;
00475 }
 | 
| 
 | ||||||||||
| 
 | 
| 
 | ||||||||||||||||
| Purge entries from the . The Cleanup_Strategy will do the actual job of cleanup once the entries to be cleaned up are decided. 
 Definition at line 478 of file Caching_Utility_T.cpp. 
 00480 {
00481   ACE_UNUSED_ARG (container);
00482   ACE_UNUSED_ARG (purge_percent);
00483 
00484   return 0;
00485 }
 | 
| 
 | ||||||||||||||||||||
| 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. 
 Definition at line 488 of file Caching_Utility_T.cpp. 
 00491 {
00492   ACE_UNUSED_ARG (container);
00493   ACE_UNUSED_ARG (key_to_remove);
00494   ACE_UNUSED_ARG (value_to_remove);
00495 }
 | 
| 
 | ||||||||||
| 
 | 
| 
 | |||||
| The cleanup strategy which can be used to destroy the entries of the container. Definition at line 325 of file Caching_Utility_T.h. | 
| 
 | |||||
| Whether the cleanup_strategy should be destroyed or not. 
 Definition at line 328 of file Caching_Utility_T.h. | 
 1.3.6
 
1.3.6