diff options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 39e24fe2fde..c86354a3d6e 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -204,6 +204,9 @@ class CommunicatorI(Communicator): while not self._impl.waitForShutdown(1000): pass + def isShutdown(self): + self._impl.isShutdown() + def stringToProxy(self, str): return self._impl.stringToProxy(str) @@ -355,6 +358,9 @@ class ObjectAdapterI(ObjectAdapter): while not self._impl.waitForDeactivate(1000): pass + def isDeactivated(self): + self._impl.isDeactivated() + def destroy(self): self._impl.destroy() |