diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-10-16 11:31:59 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-10-16 11:31:59 +0200 |
commit | ba0d6f63970277f5ccc3bf6447a5c451d007b36e (patch) | |
tree | 88a7217bec554a95a4ca256bb53d3fa6c08f5db1 /cpp/src/Ice/ObjectAdapterI.h | |
parent | Fixed py and rb to compile again with Enpoint changes (diff) | |
download | ice-ba0d6f63970277f5ccc3bf6447a5c451d007b36e.tar.bz2 ice-ba0d6f63970277f5ccc3bf6447a5c451d007b36e.tar.xz ice-ba0d6f63970277f5ccc3bf6447a5c451d007b36e.zip |
Added support for per-OA ACM and fix for retry on CloseConnectionException
Diffstat (limited to 'cpp/src/Ice/ObjectAdapterI.h')
-rw-r--r-- | cpp/src/Ice/ObjectAdapterI.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.h b/cpp/src/Ice/ObjectAdapterI.h index d65fe38a5cc..160fa7abc3e 100644 --- a/cpp/src/Ice/ObjectAdapterI.h +++ b/cpp/src/Ice/ObjectAdapterI.h @@ -91,6 +91,7 @@ public: IceInternal::ThreadPoolPtr getThreadPool() const; IceInternal::ServantManagerPtr getServantManager() const; + Ice::Int getACM() const; private: @@ -115,6 +116,8 @@ private: CommunicatorPtr _communicator; IceInternal::ObjectAdapterFactoryPtr _objectAdapterFactory; IceInternal::ThreadPoolPtr _threadPool; + bool _hasAcmTimeout; + Ice::Int _acmTimeout; IceInternal::ServantManagerPtr _servantManager; bool _activateOneOffDone; const std::string _name; |