diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-06-01 18:24:25 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-06-01 18:24:25 +0000 |
commit | 5c8391a0f701de4dc32aa84e93236e850e357a02 (patch) | |
tree | ef31dc228315ac7e0b17106213c2c39556b8376a /py/modules/IcePy/ThreadNotification.h | |
parent | Pass init data rather than logger (diff) | |
download | ice-5c8391a0f701de4dc32aa84e93236e850e357a02.tar.bz2 ice-5c8391a0f701de4dc32aa84e93236e850e357a02.tar.xz ice-5c8391a0f701de4dc32aa84e93236e850e357a02.zip |
Added thead notification callbacks
Diffstat (limited to 'py/modules/IcePy/ThreadNotification.h')
-rw-r--r-- | py/modules/IcePy/ThreadNotification.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/py/modules/IcePy/ThreadNotification.h b/py/modules/IcePy/ThreadNotification.h new file mode 100644 index 00000000000..df6c2af780c --- /dev/null +++ b/py/modules/IcePy/ThreadNotification.h @@ -0,0 +1,42 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#ifndef ICEPY_THREAD_NOTIFICATION_H +#define ICEPY_THREAD_NOTIFICATION_H + +#include <Config.h> +#include <Util.h> +#include <Ice/Initialize.h> + +namespace IcePy +{ + +// +// ThreadNotificationWrapper delegates to a Python implementation. +// +class ThreadNotificationWrapper : public Ice::ThreadNotification +{ +public: + + ThreadNotificationWrapper(PyObject*); + + virtual void start(); + virtual void stop(); + + PyObject* getObject(); + +private: + + PyObjectHandle _threadNotification; +}; +typedef IceUtil::Handle<ThreadNotificationWrapper> ThreadNotificationWrapperPtr; + +} + +#endif |