Public Types | Public Member Functions | Private Attributes

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>

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 >
ATTRIBUTES ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::attributes ( void   )  [inline]

Accessor method.

Definition at line 375 of file Caching_Strategies_T.inl.

{
  return 0;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
CACHING_UTILITY & ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::caching_utility ( void   )  [inline]

Purge the cache.

Definition at line 438 of file Caching_Strategies_T.inl.

{
  return this->caching_utility_;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
void ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::dump ( void   )  const [inline]

Dumps the state of the object.

Definition at line 444 of file Caching_Strategies_T.inl.

{
#if defined (ACE_HAS_DUMP)
  ACE_TRACE ("ACE_Null_Caching_Strategy::dump");

  ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
  ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
#endif /* ACE_HAS_DUMP */
}

template<class ATTRIBUTES , class CACHING_UTILITY >
int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_bind ( int  result,
const ATTRIBUTES &  attr 
) [inline]

Notification for an item getting bound into the cache.

Definition at line 393 of file Caching_Strategies_T.inl.

{
  ACE_UNUSED_ARG (attr);

  return result;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_find ( int  result,
ATTRIBUTES &  attr 
) [inline]

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

Definition at line 402 of file Caching_Strategies_T.inl.

{
  ACE_UNUSED_ARG (attr);

  return result;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_rebind ( int  result,
const ATTRIBUTES &  attr 
) [inline]

Notification for an item getting bound again into the cache.

Definition at line 429 of file Caching_Strategies_T.inl.

{
  ACE_UNUSED_ARG (attr);

  return result;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_trybind ( int  result,
ATTRIBUTES &  attr 
) [inline]

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

Definition at line 420 of file Caching_Strategies_T.inl.

{
  ACE_UNUSED_ARG (attr);

  return result;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
int ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::notify_unbind ( int  result,
const ATTRIBUTES &  attr 
) [inline]

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

Definition at line 411 of file Caching_Strategies_T.inl.

{
  ACE_UNUSED_ARG (attr);

  return result;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
double ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::purge_percent ( void   )  [inline]

Get the percentage of entries to purge.

Definition at line 381 of file Caching_Strategies_T.inl.

{
  return 0;
}

template<class ATTRIBUTES , class CACHING_UTILITY >
void ACE_Null_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >::purge_percent ( double  percentage  )  [inline]

Set the percentage of entries to purge.

Definition at line 387 of file Caching_Strategies_T.inl.

{
  ACE_UNUSED_ARG (percentage);
}


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:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines