The Least Frequently Used connection purging strategy. More...
#include <LFU_Connection_Purging_Strategy.h>
Public Member Functions | |
TAO_LFU_Connection_Purging_Strategy (int cache_maximum) | |
The constructor. | |
virtual void | update_item (TAO_Transport *transport) |
Called when accessing an item from the cache. |
The Least Frequently Used connection purging strategy.
This class increments the order information on each item passed in. This way, the least frequently used transport has the smallest ordering number and will therefore be purged first.
Definition at line 38 of file LFU_Connection_Purging_Strategy.h.
TAO_LFU_Connection_Purging_Strategy::TAO_LFU_Connection_Purging_Strategy | ( | int | cache_maximum | ) |
The constructor.
Definition at line 11 of file LFU_Connection_Purging_Strategy.cpp.
void TAO_LFU_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 18 of file LFU_Connection_Purging_Strategy.cpp.
{ transport->purging_order (transport->purging_order () + 1); }