summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeCache.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-07-27 13:20:03 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-07-27 13:20:03 +0000
commitdad0bda0d462b4730b168befd187ca43446f12e7 (patch)
tree1a964dc5a3bd2c945e0ee165ddda55c3e4281157 /cpp/src/IceGrid/NodeCache.h
parentImproved __checkMode (diff)
downloadice-dad0bda0d462b4730b168befd187ca43446f12e7.tar.bz2
ice-dad0bda0d462b4730b168befd187ca43446f12e7.tar.xz
ice-dad0bda0d462b4730b168befd187ca43446f12e7.zip
More IceGrid replication improvements.
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.h')
-rw-r--r--cpp/src/IceGrid/NodeCache.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/NodeCache.h b/cpp/src/IceGrid/NodeCache.h
index 2009b589de8..e6ab55a8827 100644
--- a/cpp/src/IceGrid/NodeCache.h
+++ b/cpp/src/IceGrid/NodeCache.h
@@ -71,7 +71,7 @@ class NodeCache : public CacheByString<NodeEntry>
{
public:
- NodeCache(const Ice::CommunicatorPtr&, ReplicaCache&, int);
+ NodeCache(const Ice::CommunicatorPtr&, ReplicaCache&);
void destroy();
@@ -79,13 +79,11 @@ public:
const Ice::CommunicatorPtr& getCommunicator() const { return _communicator; }
ReplicaCache& getReplicaCache() const { return _replicaCache; }
- int getSessionTimeout() const { return _sessionTimeout; }
private:
const Ice::CommunicatorPtr _communicator;
ReplicaCache& _replicaCache;
- const int _sessionTimeout;
};
};