diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 09:51:28 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 09:51:28 +0000 |
commit | a6cb3af17287c96cb1ed307b42fe9633d1905630 (patch) | |
tree | 93dd4bfa368f581998fbcf20802e84fb3f22ef8e /cpp/src/IceGrid/AdapterCache.h | |
parent | More changes for inconsistent ice_* proxy methods (diff) | |
download | ice-a6cb3af17287c96cb1ed307b42fe9633d1905630.tar.bz2 ice-a6cb3af17287c96cb1ed307b42fe9633d1905630.tar.xz ice-a6cb3af17287c96cb1ed307b42fe9633d1905630.zip |
Property set bug fixes, locator tracing.
Diffstat (limited to 'cpp/src/IceGrid/AdapterCache.h')
-rw-r--r-- | cpp/src/IceGrid/AdapterCache.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceGrid/AdapterCache.h b/cpp/src/IceGrid/AdapterCache.h index 427ed0cc662..8f99a5e1424 100644 --- a/cpp/src/IceGrid/AdapterCache.h +++ b/cpp/src/IceGrid/AdapterCache.h @@ -34,7 +34,7 @@ public: AdapterEntry(AdapterCache&, const std::string&); - virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&) = 0; + virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&, bool&) = 0; virtual float getLeastLoadedNodeLoad(LoadSample) const = 0; virtual std::string getApplication() const = 0; virtual AdapterInfoSeq getAdapterInfo() const = 0; @@ -54,13 +54,13 @@ public: ServerAdapterEntry(AdapterCache&, const std::string&, const std::string&, const ServerEntryPtr&); - virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&); + virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&, bool&); virtual float getLeastLoadedNodeLoad(LoadSample) const; virtual std::string getApplication() const; virtual AdapterInfoSeq getAdapterInfo() const; virtual const std::string& getReplicaGroupId() const { return _replicaGroupId; } - AdapterPrx getProxy(const std::string& = std::string()) const; + AdapterPrx getProxy(const std::string&) const; private: @@ -77,7 +77,7 @@ public: ReplicaGroupEntry(AdapterCache&, const std::string&, const std::string&, const LoadBalancingPolicyPtr&); - virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&); + virtual std::vector<std::pair<std::string, AdapterPrx> > getProxies(int&, bool&); virtual float getLeastLoadedNodeLoad(LoadSample) const; virtual std::string getApplication() const; virtual AdapterInfoSeq getAdapterInfo() const; |