diff options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 3 |
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) |