TAO_FIFO_Connection_Purging_Strategy Class Reference

The First In First Out connection purging strategy. More...

#include <FIFO_Connection_Purging_Strategy.h>

Inheritance diagram for TAO_FIFO_Connection_Purging_Strategy:

Inheritance graph
[legend]
Collaboration diagram for TAO_FIFO_Connection_Purging_Strategy:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 TAO_FIFO_Connection_Purging_Strategy (int cache_maximum)
 The constructor.

virtual void update_item (TAO_Transport *transport)
 Called when accessing an item from the cache.


Private Attributes

unsigned long order_
 The ordering information for each transport in the cache.


Detailed Description

The First In First Out connection purging strategy.

This class maintains it's own count which is only applied to the item passed if it has not yet been cached. This way, each successive transport has a larger ordering number than the previous. This will cause the first transport to be purged first.

Definition at line 39 of file FIFO_Connection_Purging_Strategy.h.


Constructor & Destructor Documentation

TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_FIFO_Connection_Purging_Strategy::TAO_FIFO_Connection_Purging_Strategy int  cache_maximum  ) 
 

The constructor.

Definition at line 11 of file FIFO_Connection_Purging_Strategy.cpp.

00013  : TAO_Connection_Purging_Strategy (cache_maximum),
00014    // Initialized to 1 to insure that the transports purging_order
00015    // is only 0 upon initialization.
00016    order_ (1)
00017 {
00018 }


Member Function Documentation

void TAO_FIFO_Connection_Purging_Strategy::update_item TAO_Transport transport  )  [virtual]
 

Called when accessing an item from the cache.

Implements TAO_Connection_Purging_Strategy.

Definition at line 21 of file FIFO_Connection_Purging_Strategy.cpp.

References TAO_Transport::purging_order().

00022 {
00023   // FIFO, so only update the purging order if this
00024   // item has not been cached yet.
00025   if (transport->purging_order () == 0)
00026     {
00027       transport->purging_order (this->order_++);
00028     }
00029 }


Member Data Documentation

unsigned long TAO_FIFO_Connection_Purging_Strategy::order_ [private]
 

The ordering information for each transport in the cache.

Definition at line 51 of file FIFO_Connection_Purging_Strategy.h.


The documentation for this class was generated from the following files:
Generated on Thu Nov 9 13:41:15 2006 for TAO_Strategies by doxygen 1.3.6