#include <Cleanup_Strategies_T.h>
Inheritance diagram for ACE_Cleanup_Strategy< KEY, VALUE, CONTAINER >:

Public Member Functions | |
| virtual | ~ACE_Cleanup_Strategy (void) | 
| Destructor.   | |
| virtual int | cleanup (CONTAINER &container, KEY *key, VALUE *value) | 
| The method which will do the cleanup of the entry in the container.   | |
By default the entry to be cleaned up is removed from the container.
Definition at line 39 of file Cleanup_Strategies_T.h.
      
  | 
  ||||||||||
| 
 Destructor. 
 Definition at line 17 of file Cleanup_Strategies_T.cpp. 
 00018 {
00019 }
 | 
  
      
  | 
  ||||||||||||||||||||
| 
 The method which will do the cleanup of the entry in the container. 
 Reimplemented in ACE_Recyclable_Handler_Cleanup_Strategy< KEY, VALUE, CONTAINER >, ACE_Refcounted_Recyclable_Handler_Cleanup_Strategy< KEY, VALUE, CONTAINER >, ACE_Handler_Cleanup_Strategy< KEY, VALUE, CONTAINER >, and ACE_Null_Cleanup_Strategy< KEY, VALUE, CONTAINER >. Definition at line 22 of file Cleanup_Strategies_T.cpp. Referenced by ACE_Recyclable_Handler_Caching_Utility< KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES >::clear_cache(). 
 00025 {
00026   return container.unbind (*key);
00027 }
 | 
  
 
1.3.6