summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-06-01 18:24:25 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-06-01 18:24:25 +0000
commit5c8391a0f701de4dc32aa84e93236e850e357a02 (patch)
treeef31dc228315ac7e0b17106213c2c39556b8376a /py/python/Ice.py
parentPass init data rather than logger (diff)
downloadice-5c8391a0f701de4dc32aa84e93236e850e357a02.tar.bz2
ice-5c8391a0f701de4dc32aa84e93236e850e357a02.tar.xz
ice-5c8391a0f701de4dc32aa84e93236e850e357a02.zip
Added thead notification callbacks
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r--py/python/Ice.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py
index a834114dbe4..f68186397dd 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -147,6 +147,17 @@ import Ice_ServantLocator_ice
del Endpoint
Endpoint = IcePy.Endpoint
+
+class ThreadNotification(object):
+ def __init__(self):
+ pass
+
+ #
+ # Operation signatures
+ #
+ # def start():
+ # def stop():
+
#
# Initialization data.
#
@@ -156,6 +167,7 @@ class InitializationData(object):
self.logger = None
#self.stats = None # Stats not currently supported in Python.
self.defaultContext = {}
+ self.threadHook = None
#
# Communicator wrapper.