00001 // $Id: LFU_Connection_Purging_Strategy.cpp 73152 2006-06-20 07:33:02Z jwillemsen $ 00002 00003 #include "tao/Strategies/LFU_Connection_Purging_Strategy.h" 00004 #include "tao/Transport.h" 00005 00006 ACE_RCSID(tao, LFU_Connection_Purging_Strategy, "$Id: LFU_Connection_Purging_Strategy.cpp 73152 2006-06-20 07:33:02Z jwillemsen $") 00007 00008 00009 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00010 00011 TAO_LFU_Connection_Purging_Strategy::TAO_LFU_Connection_Purging_Strategy ( 00012 int cache_maximum) 00013 : TAO_Connection_Purging_Strategy (cache_maximum) 00014 { 00015 } 00016 00017 void 00018 TAO_LFU_Connection_Purging_Strategy::update_item (TAO_Transport* transport) 00019 { 00020 transport->purging_order (transport->purging_order () + 1); 00021 } 00022 00023 TAO_END_VERSIONED_NAMESPACE_DECL