1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
.TH ACE_Handler_Cleanup_Strategy 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_Handler_Cleanup_Strategy \- Defines a strategy to be followed for cleaning up entries which are svc_handlers from a container.
.SH SYNOPSIS
.br
.PP
\fC#include <Cleanup_Strategies_T.h>\fR
.PP
Inherits \fBACE_Cleanup_Strategy< KEY,VALUE,CONTAINER >\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "virtual int \fBcleanup\fR (CONTAINER &container, KEY *key, VALUE *value)"
.br
.RI "\fIThe method which will do the cleanup of the entry in the container.\fR"
.in -1c
.SH DETAILED DESCRIPTION
.PP
.SS template<class KEY, class VALUE, class CONTAINER> template class ACE_Handler_Cleanup_Strategy
Defines a strategy to be followed for cleaning up entries which are svc_handlers from a container.
.PP
.PP
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: This cleanup strategy should be used in the case when the handler has the caching attributes.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS template<classKEY, classVALUE, classCONTAINER> int ACE_Handler_Cleanup_Strategy<KEY, VALUE, CONTAINER>::cleanup (CONTAINER & container, KEY * key, VALUE * value)\fC [virtual]\fR
.PP
The method which will do the cleanup of the entry in the container.
.PP
Reimplemented from \fBACE_Cleanup_Strategy\fR.
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|