diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-11-08 10:00:09 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-11-08 10:00:09 +0000 |
commit | 2496d1c85fe8bd9fe7f343084ba68ac99b7abaac (patch) | |
tree | ded7d3c012a30f978db0fb2ecf81fadcfcebfe52 /cpp/src/IceGrid/AdapterCache.h | |
parent | windows fixes for http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=534 (diff) | |
download | ice-2496d1c85fe8bd9fe7f343084ba68ac99b7abaac.tar.bz2 ice-2496d1c85fe8bd9fe7f343084ba68ac99b7abaac.tar.xz ice-2496d1c85fe8bd9fe7f343084ba68ac99b7abaac.zip |
Bug fixes
Diffstat (limited to 'cpp/src/IceGrid/AdapterCache.h')
-rw-r--r-- | cpp/src/IceGrid/AdapterCache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/AdapterCache.h b/cpp/src/IceGrid/AdapterCache.h index a05a4df0189..eaa1e99edea 100644 --- a/cpp/src/IceGrid/AdapterCache.h +++ b/cpp/src/IceGrid/AdapterCache.h @@ -34,7 +34,7 @@ public: AdapterEntry(Cache<std::string, AdapterEntry>&, const std::string&); - virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&) { + virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(bool, int&) { return std::vector<std::pair<std::string, AdapterPrx> >(); } virtual float getLeastLoadedNodeLoad(LoadSample) const { return 0.0f; } virtual std::string getApplication() const { return ""; } @@ -53,7 +53,7 @@ public: ServerAdapterEntry(Cache<std::string, AdapterEntry>&, const std::string&); - virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&); + virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(bool, int&); virtual float getLeastLoadedNodeLoad(LoadSample) const; virtual std::string getApplication() const; @@ -77,7 +77,7 @@ public: ReplicaGroupEntry(Cache<std::string, AdapterEntry>&, const std::string&); - virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&); + virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(bool, int&); virtual float getLeastLoadedNodeLoad(LoadSample) const; virtual std::string getApplication() const; |