summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-01-05 18:44:54 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-01-05 18:44:54 +0000
commitf6e5f4fa31eb7ca5ae0c6301b579da2752606950 (patch)
tree6198903725faacfb92fa6758a3b65a9812ff41ab /py/python/Ice.py
parentfix header file symlink target location for db45 (diff)
downloadice-f6e5f4fa31eb7ca5ae0c6301b579da2752606950.tar.bz2
ice-f6e5f4fa31eb7ca5ae0c6301b579da2752606950.tar.xz
ice-f6e5f4fa31eb7ca5ae0c6301b579da2752606950.zip
Added ObjectAdapter::destroy
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r--py/python/Ice.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py
index 54fc00a71bf..39e24fe2fde 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -355,6 +355,9 @@ class ObjectAdapterI(ObjectAdapter):
while not self._impl.waitForDeactivate(1000):
pass
+ def destroy(self):
+ self._impl.destroy()
+
def add(self, servant, id):
return self._impl.add(servant, id)