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