diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-05 18:50:12 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-05 18:50:12 +0000 |
commit | 738623799efdaab619e744919fb7c3821ded703c (patch) | |
tree | 8e9a20c99c07f6cab855b1ff246101dfdc4dfc28 /cpp/src/Ice/ObjectAdapterI.h | |
parent | Added ObjectAdapter::destroy (diff) | |
download | ice-738623799efdaab619e744919fb7c3821ded703c.tar.bz2 ice-738623799efdaab619e744919fb7c3821ded703c.tar.xz ice-738623799efdaab619e744919fb7c3821ded703c.zip |
Added ObejctAdapter::destroy
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 c3f198d91b8..a4634d68931 100644 --- a/cpp/src/Ice/ObjectAdapterI.h +++ b/cpp/src/Ice/ObjectAdapterI.h @@ -49,6 +49,7 @@ public: virtual void waitForHold(); virtual void deactivate(); virtual void waitForDeactivate(); + virtual void destroy(); virtual ObjectPrx add(const ObjectPtr&, const Identity&); virtual ObjectPrx addFacet(const ObjectPtr&, const Identity&, const std::string&); @@ -117,6 +118,8 @@ private: int _directCount; // The number of direct proxies dispatching on this object adapter. bool _waitForActivate; bool _waitForDeactivate; + bool _destroying; + bool _destroyed; bool _noConfig; static std::string _propertyPrefix; |