#include <Cleanup_Strategies_T.h>
Inheritance diagram for ACE_Recyclable_Handler_Cleanup_Strategy:


Public Methods | |
| virtual int | cleanup (CONTAINER &container, KEY *key, VALUE *value) |
| The method which will do the cleanup of the entry in the container. More... | |
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. Note: To be used when the handler is recyclable.
Definition at line 61 of file Cleanup_Strategies_T.h.
|
||||||||||||||||||||
|
The method which will do the cleanup of the entry in the container.
Reimplemented from ACE_Cleanup_Strategy. Definition at line 29 of file Cleanup_Strategies_T.cpp.
00032 {
00033 VALUE value;
00034
00035 if (container.unbind (*key, value) == -1)
00036 return -1;
00037
00038 value.first ()->recycler (0, 0);
00039
00040 value.first ()->close ();
00041
00042 return 0;
00043 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002