summaryrefslogtreecommitdiff
path: root/TAO/tao/Strategies/NULL_Connection_Purging_Strategy.cpp
blob: 181be613d77556402310f602b5c61b5aba5e7c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// $Id$

#include "tao/Strategies/NULL_Connection_Purging_Strategy.h"
#include "tao/Transport.h"

ACE_RCSID(tao, NULL_Connection_Purging_Strategy, "$Id$")

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO_NULL_Connection_Purging_Strategy::TAO_NULL_Connection_Purging_Strategy (
                                                           int cache_maximum)
 : TAO_Connection_Purging_Strategy (cache_maximum)
{
}

TAO_NULL_Connection_Purging_Strategy::~TAO_NULL_Connection_Purging_Strategy (void)
{
}

void
TAO_NULL_Connection_Purging_Strategy::update_item (TAO_Transport* transport)
{
  ACE_UNUSED_ARG (transport);
}

int
TAO_NULL_Connection_Purging_Strategy::cache_maximum (void) const
{
  return -1;
}

TAO_END_VERSIONED_NAMESPACE_DECL