vote up 0 vote down star

I need to allow other Python applications to register callback functions for events in my application. These need to have priorities associated with them (so a callback with a priority of 10 runs before a callback with a priority of 1) and callback functions need to be able to signal errors to the dispatcher.

These are all lightweight callbacks running in the same process, so I don't need to send signals across process boundaries.

Is there a good Python library to handle this, or do I need to write my own?

flag

50% accept rate
Isn't this a dupe of this stackoverflow.com/questions/115844/… – Florian Bösch Sep 22 '08 at 23:32
@Florian: I think Chris is looking for libraries that will send events between two separate applications. – John Millikin Sep 22 '08 at 23:41

3 Answers

vote up 1 vote down check

Are these other applications running in another address space? If so, you'll need to use an interprocess communication library like D-BUS.

If you're just sending signals in the same process, try PyDispatcher

link|flag
Does PyDispatcher allow callers to set the priority of their methods? Or return values? – Chris B. Sep 23 '08 at 0:14
No priority, but that's something you can write the signal registration function to perform. Not sure what you mean by return values -- I believe PyDispatcher returns the result of calling all the callbacks as a list. – John Millikin Sep 23 '08 at 3:39
vote up 0 vote down

Try Twisted for anything network-related. Its perspective broker is quite nice to use.

link|flag
vote up 0 vote down

What platform are you running under? GObject is the basis of the GTK GUI that's widely-used under Linux, and it supports event loops with prioritizable events like this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.