Defines a strategy to be followed for cleaning up entries which are svc_handlers from a container. More...
#include <Cleanup_Strategies_T.h>


Public Member Functions | |
| virtual int | cleanup (CONTAINER &container, KEY *key, VALUE *value) |
| The method which will do the cleanup of the entry in the container. | |
Defines a strategy to be followed for cleaning up entries which are svc_handlers from a container.
The entry to be cleaned up is removed from the container. Here, since we are dealing with svc_handlers specifically, we perform a couple of extra operations.
Definition at line 66 of file Cleanup_Strategies_T.h.
| int ACE_Recyclable_Handler_Cleanup_Strategy< KEY, VALUE, CONTAINER >::cleanup | ( | CONTAINER & | container, | |
| KEY * | key, | |||
| VALUE * | value | |||
| ) | [virtual] |
The method which will do the cleanup of the entry in the container.
Reimplemented from ACE_Cleanup_Strategy< KEY, VALUE, CONTAINER >.
Definition at line 32 of file Cleanup_Strategies_T.cpp.
{
VALUE value;
if (container.unbind (*key, value) == -1)
return -1;
value.first ()->recycler (0, 0);
value.first ()->close ();
return 0;
}
1.7.0