Public Types |
typedef ACE_Refcounted_Recyclable_Handler_Cleanup_Strategy<
KEY, VALUE, CONTAINER > | CLEANUP_STRATEGY |
typedef ACE_Cleanup_Strategy<
KEY, VALUE, CONTAINER > | CLEANUP_STRATEGY_BASE |
Public Methods |
| ACE_Refcounted_Recyclable_Handler_Caching_Utility (ACE_Cleanup_Strategy< KEY, VALUE, CONTAINER > *cleanup_strategy=0, int delete_cleanup_strategy=0) |
| ~ACE_Refcounted_Recyclable_Handler_Caching_Utility (void) |
| Destructor. More...
|
int | clear_cache (CONTAINER &container, double purge_percent) |
| Purge entries from the <container>. More...
|
Protected Methods |
void | minimum (CONTAINER &container, KEY *&key_to_remove, VALUE *&value_to_remove) |
| Find the entry with minimum caching attributes. More...
|
Protected Attributes |
CLEANUP_STRATEGY_BASE * | cleanup_strategy_ |
| This is the default Cleanup Strategy for this utility. More...
|
int | delete_cleanup_strategy_ |
| Whether the cleanup_strategy should be destroyed or not. More...
|
size_t | marked_as_closed_entries_ |
| This figure denotes the number of entries are there in the container which have been marked as closed already but might not have been unbound from the container. More...
|
Private Methods |
| ACE_UNIMPLEMENTED_FUNC (void operator=(const ACE_Refcounted_Recyclable_Handler_Caching_Utility< KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES > &)) ACE_UNIMPLEMENTED_FUNC(ACE_Refcounted_Recyclable_Handler_Caching_Utility(const ACE_Refcounted_Recyclable_Handler_Caching_Utility< KEY |
Private Attributes |
| VALUE |
| CONTAINER |
| ITERATOR |
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 class helps in the caching_strategies using a container containing entries of <Refcounted_KEY, Recyclable_Connection_Handler> kind. The attributes helps in deciding the entries to be purged. The Cleanup_Strategy is the callback class to which the entries to be cleaned up will be delegated.