diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-06-09 14:33:56 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-06-09 14:33:56 +0000 |
commit | dd4155ec2f0c543061e3a08d0938c5f8aff227c7 (patch) | |
tree | 5feac0309fb01f2da479179ddc23d93a407ceae9 /cpp/src/IceGrid/ReapThread.h | |
parent | adding support classes for CLDC support (diff) | |
download | ice-dd4155ec2f0c543061e3a08d0938c5f8aff227c7.tar.bz2 ice-dd4155ec2f0c543061e3a08d0938c5f8aff227c7.tar.xz ice-dd4155ec2f0c543061e3a08d0938c5f8aff227c7.zip |
Added support for sessions and node/registry observers
Diffstat (limited to 'cpp/src/IceGrid/ReapThread.h')
-rw-r--r-- | cpp/src/IceGrid/ReapThread.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/ReapThread.h b/cpp/src/IceGrid/ReapThread.h index 049ab62e455..2514fb11cf4 100644 --- a/cpp/src/IceGrid/ReapThread.h +++ b/cpp/src/IceGrid/ReapThread.h @@ -11,7 +11,8 @@ #define ICEGRID_REAPER_THREAD_H #include <IceUtil/Thread.h> -#include <IceGrid/NodeSessionI.h> +#include <Glacier2/SessionF.h> +#include <IceGrid/SessionI.h> #include <list> namespace IceGrid @@ -25,13 +26,13 @@ public: virtual void run(); void terminate(); - void add(const NodeSessionPrx&, const NodeSessionIPtr&); + void add(const Glacier2::SessionPrx&, const SessionIPtr&); private: const IceUtil::Time _timeout; bool _terminated; - std::list<std::pair<NodeSessionIPtr, NodeSessionPrx> > _sessions; + std::list<std::pair<SessionIPtr, Glacier2::SessionPrx> > _sessions; }; typedef IceUtil::Handle<ReapThread> ReapThreadPtr; |