diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-09-15 15:29:05 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-09-15 15:29:05 +0000 |
commit | cc25d4e822f650e4d947b27a173c01de543738b4 (patch) | |
tree | be3fde742978e351c3bcc0a8118a99752396499d /cpp/src/IceGrid/ServerCache.h | |
parent | Code cleanup (diff) | |
download | ice-cc25d4e822f650e4d947b27a173c01de543738b4.tar.bz2 ice-cc25d4e822f650e4d947b27a173c01de543738b4.tar.xz ice-cc25d4e822f650e4d947b27a173c01de543738b4.zip |
More code cleanup + added replica session timeout
Diffstat (limited to 'cpp/src/IceGrid/ServerCache.h')
-rw-r--r-- | cpp/src/IceGrid/ServerCache.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/ServerCache.h b/cpp/src/IceGrid/ServerCache.h index ce19eec144a..d893a488562 100644 --- a/cpp/src/IceGrid/ServerCache.h +++ b/cpp/src/IceGrid/ServerCache.h @@ -90,7 +90,7 @@ class ServerCache : public CacheByString<ServerEntry> { public: - ServerCache(const Ice::CommunicatorPtr&, NodeCache&, AdapterCache&, ObjectCache&, AllocatableObjectCache&, int); + ServerCache(const Ice::CommunicatorPtr&, NodeCache&, AdapterCache&, ObjectCache&, AllocatableObjectCache&); ServerEntryPtr add(const ServerInfo&); ServerEntryPtr get(const std::string&) const; @@ -101,7 +101,6 @@ public: NodeCache& getNodeCache() const { return _nodeCache; } Ice::CommunicatorPtr getCommunicator() const { return _communicator; } - int getSessionTimeout() const { return _sessionTimeout; } private: @@ -116,7 +115,6 @@ private: AdapterCache& _adapterCache; ObjectCache& _objectCache; AllocatableObjectCache& _allocatableObjectCache; - int _sessionTimeout; }; }; |