Collaboration diagram for ACE_Refcounted_Recyclable_Handler_Caching_Utility< KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES >:
|
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) |
| Constructor.
|
| ~ACE_Refcounted_Recyclable_Handler_Caching_Utility (void) |
| Destructor.
|
int | clear_cache (CONTAINER &container, double purge_percent) |
Protected Methods |
void | minimum (CONTAINER &container, KEY *&key_to_remove, VALUE *&value_to_remove) |
| Find the entry with minimum caching attributes.
|
Protected Attributes |
CLEANUP_STRATEGY_BASE * | cleanup_strategy_ |
| This is the default Cleanup Strategy for this utility.
|
int | delete_cleanup_strategy_ |
| Whether the cleanup_strategy should be destroyed or not.
|
size_t | marked_as_closed_entries_ |
Private Methods |
void | operator= (const ARRHUTIL< KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES > &) |
| ARRHUTIL (const ARRHUTIL< KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES > &) |
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.