summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-01-08 17:39:03 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-01-08 17:39:03 +0000
commitb9c51083302aa66a840d9a6f176671ad5f37dadd (patch)
tree02e1f15cad1e539c2cacbf692ffae0cd40029ebf /py/python/Ice.py
parent- Fixing bug 800. (diff)
downloadice-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.py6
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()