From fc32c2a7805365e7f40ab8a664f94efae35137da Mon Sep 17 00:00:00 2001 From: Mark Spruiell Date: Wed, 8 Mar 2017 15:47:34 -0800 Subject: - ICE-6845 - More dispatcher fixes for Python - Deprecated the InitializationData.threadHook member - Added threadStart and threadStop members to InitializationData - InitializationData.batchRequestInterceptor can now be a callable --- python/modules/IcePy/Thread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/modules/IcePy/Thread.h') diff --git a/python/modules/IcePy/Thread.h b/python/modules/IcePy/Thread.h index 55215522323..5733c4bdce3 100644 --- a/python/modules/IcePy/Thread.h +++ b/python/modules/IcePy/Thread.h @@ -58,16 +58,16 @@ class ThreadHook : public Ice::ThreadNotification { public: - ThreadHook(PyObject*); + ThreadHook(PyObject*, PyObject*, PyObject*); virtual void start(); virtual void stop(); - PyObject* getObject(); - private: PyObjectHandle _threadNotification; + PyObjectHandle _threadStart; + PyObjectHandle _threadStop; }; typedef IceUtil::Handle ThreadHookPtr; -- cgit v1.2.3