diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-08 17:39:03 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-08 17:39:03 +0000 |
commit | b9c51083302aa66a840d9a6f176671ad5f37dadd (patch) | |
tree | 02e1f15cad1e539c2cacbf692ffae0cd40029ebf /py/python/Ice.py | |
parent | - Fixing bug 800. (diff) | |
download | ice-b9c51083302aa66a840d9a6f176671ad5f37dadd.tar.bz2 ice-b9c51083302aa66a840d9a6f176671ad5f37dadd.tar.xz ice-b9c51083302aa66a840d9a6f176671ad5f37dadd.zip |
Added Communicator::isShutdown() and ObjectAdapter::isDeactivated()
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() |