summaryrefslogtreecommitdiff
path: root/apps/JAWS/PROTOTYPE/HTTP_Policy.cpp
blob: b319668142d23c8460d351572174f743f7b2e418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// $Id$

#include "HTTP_Policy.h"

ACE_RCSID(PROTOTYPE, HTTP_Policy, "$Id$")

HTTP_Policy::HTTP_Policy (JAWS_Concurrency_Base *concurrency)
  : concurrency_ (concurrency)
{
}

JAWS_Concurrency_Base *
HTTP_Policy::update (void *)
{
  /* for now, we always return the same concurrency strategy */
  return this->concurrency_;
}