diff options
author | Daniel Veillard <veillard@redhat.com> | 2008-10-31 10:13:45 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2008-10-31 10:13:45 +0000 |
commit | 000818421b5007e1ee65c3fa8fef12bcf08feea2 (patch) | |
tree | 2dfd825507d5c75d1ee393bf229706f48dcf2f56 /libvir.py | |
parent | 494cd4b4c291391cc5f4f3c20e4f60667c1dd2fb (diff) | |
download | libvirt-python-split-000818421b5007e1ee65c3fa8fef12bcf08feea2.tar.gz libvirt-python-split-000818421b5007e1ee65c3fa8fef12bcf08feea2.tar.xz libvirt-python-split-000818421b5007e1ee65c3fa8fef12bcf08feea2.zip |
* python/Makefile.am python/generator.py python/libvir.c
python/libvir.py python/libvirt_wrap.h python/types.c:
adds support for events from the python bindings, also
improves the generator allowing to embbed per function
definition files, patch by Ben Guthro
* examples/domain-events/events-python/event-test.py: also
adds a programming example
Daniel
Diffstat (limited to 'libvir.py')
-rw-r--r-- | libvir.py | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -123,6 +123,26 @@ def getVersion (name = None): return ret +# +# Invoke an EventHandle callback +# +def eventInvokeHandleCallback (fd, event, callback, opaque): + """ + Invoke the Event Impl Handle Callback in C + """ + libvirtmod.virEventInvokeHandleCallback(fd, event, callback, opaque); + +# +# Invoke an EventTimeout callback +# +def eventInvokeTimeoutCallback (timer, callback, opaque): + """ + Invoke the Event Impl Timeout Callback in C + """ + libvirtmod.virEventInvokeTimeoutCallback(timer, callback, opaque); + + + # WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING # # Everything before this line comes from libvir.py |