diff options
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 3bf0714f566..3668102e35e 100644 --- a/cpp/src/IceGrid/AdapterCache.h +++ b/cpp/src/IceGrid/AdapterCache.h @@ -62,7 +62,7 @@ protected: AdapterCache& _cache; const std::string _id; - const std::string _application; + std::string _application; }; typedef IceUtil::Handle<AdapterEntry> AdapterEntryPtr; @@ -105,9 +105,9 @@ public: virtual AdapterPrx getProxy(const std::string&, bool) const { return 0; } void addReplica(const std::string&, const ServerAdapterEntryPtr&); - void removeReplica(const std::string&); + bool removeReplica(const std::string&); - void update(const LoadBalancingPolicyPtr&); + void update(const std::string&, const LoadBalancingPolicyPtr&); bool hasAdaptersFromOtherApplications() const; private: |