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