diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-09-04 19:39:59 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-09-04 19:39:59 +0000 |
commit | 1ce69fc8c36f2b7fa1d71ebe18e7ac4de01e3268 (patch) | |
tree | cd87f8121980159fdafd6b01e6802ea594478b93 /cpp/src/IceGrid/NodeSessionManager.h | |
parent | icegridadmin always uses routed config if possible. added error messages if (diff) | |
download | ice-1ce69fc8c36f2b7fa1d71ebe18e7ac4de01e3268.tar.bz2 ice-1ce69fc8c36f2b7fa1d71ebe18e7ac4de01e3268.tar.xz ice-1ce69fc8c36f2b7fa1d71ebe18e7ac4de01e3268.zip |
Improved observers, refactored topic manager and initialization Added
icegridadmin commands to examine the registries
Diffstat (limited to 'cpp/src/IceGrid/NodeSessionManager.h')
-rw-r--r-- | cpp/src/IceGrid/NodeSessionManager.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cpp/src/IceGrid/NodeSessionManager.h b/cpp/src/IceGrid/NodeSessionManager.h index 9608df85c44..5188fb36409 100644 --- a/cpp/src/IceGrid/NodeSessionManager.h +++ b/cpp/src/IceGrid/NodeSessionManager.h @@ -30,9 +30,9 @@ public: NodeSessionKeepAliveThread(const InternalRegistryPrx&, const NodeIPtr&); - virtual NodeSessionPrx createSession(const InternalRegistryPrx&, IceUtil::Time&) const; - virtual void destroySession(const NodeSessionPrx&) const; - virtual bool keepAlive(const NodeSessionPrx&) const; + virtual NodeSessionPrx createSession(const InternalRegistryPrx&, IceUtil::Time&); + virtual void destroySession(const NodeSessionPrx&); + virtual bool keepAlive(const NodeSessionPrx&); private: @@ -70,19 +70,19 @@ private: } virtual NodeSessionPrx - createSession(const InternalRegistryPrx& master, IceUtil::Time& timeout) const + createSession(const InternalRegistryPrx& master, IceUtil::Time& timeout) { return _manager.createSession(master, timeout); } virtual void - destroySession(const NodeSessionPrx& session) const + destroySession(const NodeSessionPrx& session) { _manager.destroySession(session); } virtual bool - keepAlive(const NodeSessionPrx& session) const + keepAlive(const NodeSessionPrx& session) { return _manager.keepAlive(session); } @@ -95,9 +95,9 @@ private: friend class Thread; - NodeSessionPrx createSession(const InternalRegistryPrx&, IceUtil::Time&) const; - void destroySession(const NodeSessionPrx&) const; - bool keepAlive(const NodeSessionPrx&) const; + NodeSessionPrx createSession(const InternalRegistryPrx&, IceUtil::Time&); + void destroySession(const NodeSessionPrx&); + bool keepAlive(const NodeSessionPrx&); const NodeIPtr _node; ThreadPtr _thread; |