ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY > Class Template Reference

The is a special caching strategy which doesnt have the purging feature. More...

#include <Caching_Strategies_T.h>

Collaboration diagram for ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef ATTRIBUTES CACHING_ATTRIBUTES

Public Member Functions

ATTRIBUTES attributes (void)
 Accessor method.

double purge_percent (void)
 Get the percentage of entries to purge.

void purge_percent (double percentage)
 Set the percentage of entries to purge.

int notify_bind (int result, const ATTRIBUTES &attr)
 Notification for an item getting bound into the cache.

int notify_find (int result, ATTRIBUTES &attr)
int notify_unbind (int result, const ATTRIBUTES &attr)
int notify_trybind (int result, ATTRIBUTES &attr)
int notify_rebind (int result, const ATTRIBUTES &attr)
 Notification for an item getting bound again into the cache.

CACHING_UTILITY & caching_utility (void)
 Purge the cache.

void dump (void) const
 Dumps the state of the object.


Private Attributes

CACHING_UTILITY caching_utility_

Detailed Description

template<class ATTRIBUTES, class CACHING_UTILITY>
class ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >

The is a special caching strategy which doesnt have the purging feature.

No purging provided. To be used when purging might be too expensive an operation.

Definition at line 479 of file Caching_Strategies_T.h.


Member Typedef Documentation

template<class ATTRIBUTES, class CACHING_UTILITY>
typedef ATTRIBUTES ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::CACHING_ATTRIBUTES
 

Definition at line 485 of file Caching_Strategies_T.h.


Member Function Documentation

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE ATTRIBUTES ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::attributes void   ) 
 

Accessor method.

Definition at line 384 of file Caching_Strategies_T.inl.

00385 {
00386   return 0;
00387 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE CACHING_UTILITY & ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::caching_utility void   ) 
 

Purge the cache.

Definition at line 447 of file Caching_Strategies_T.inl.

00448 {
00449   return this->caching_utility_;
00450 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE void ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::dump void   )  const
 

Dumps the state of the object.

Definition at line 453 of file Caching_Strategies_T.inl.

References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_TRACE, and LM_DEBUG.

00454 {
00455 #if defined (ACE_HAS_DUMP)
00456   ACE_TRACE ("ACE_Null_Caching_Strategy::dump");
00457 
00458   ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
00459   ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
00460 #endif /* ACE_HAS_DUMP */
00461 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_bind int  result,
const ATTRIBUTES &  attr
 

Notification for an item getting bound into the cache.

Definition at line 402 of file Caching_Strategies_T.inl.

00404 {
00405   ACE_UNUSED_ARG (attr);
00406 
00407   return result;
00408 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_find int  result,
ATTRIBUTES &  attr
 

This method acts as a notification about the CONTAINERs find method call

Definition at line 411 of file Caching_Strategies_T.inl.

00413 {
00414   ACE_UNUSED_ARG (attr);
00415 
00416   return result;
00417 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_rebind int  result,
const ATTRIBUTES &  attr
 

Notification for an item getting bound again into the cache.

Definition at line 438 of file Caching_Strategies_T.inl.

00440 {
00441   ACE_UNUSED_ARG (attr);
00442 
00443   return result;
00444 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_trybind int  result,
ATTRIBUTES &  attr
 

This method acts as a notification about the CONTAINERs trybind method call

Definition at line 429 of file Caching_Strategies_T.inl.

00431 {
00432   ACE_UNUSED_ARG (attr);
00433 
00434   return result;
00435 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_unbind int  result,
const ATTRIBUTES &  attr
 

This method acts as a notification about the CONTAINERs unbind method call

Definition at line 420 of file Caching_Strategies_T.inl.

00422 {
00423   ACE_UNUSED_ARG (attr);
00424 
00425   return result;
00426 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE void ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::purge_percent double  percentage  ) 
 

Set the percentage of entries to purge.

Definition at line 396 of file Caching_Strategies_T.inl.

00397 {
00398   ACE_UNUSED_ARG (percentage);
00399 }

template<class ATTRIBUTES, class CACHING_UTILITY>
ACE_INLINE double ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::purge_percent void   ) 
 

Get the percentage of entries to purge.

Definition at line 390 of file Caching_Strategies_T.inl.

00391 {
00392   return 0;
00393 }


Member Data Documentation

template<class ATTRIBUTES, class CACHING_UTILITY>
CACHING_UTILITY ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::caching_utility_ [private]
 

This is the helper class which will decide and expunge entries from the cache.

Definition at line 533 of file Caching_Strategies_T.h.


The documentation for this class was generated from the following files:
Generated on Thu Nov 9 11:25:56 2006 for ACE by doxygen 1.3.6