PySide IPC with signals/slots
I've been trying to figure out if there's any way to manage IPC in PySide and still take advantage of Qt's signals/slots mechanism. The QtDBus module sounds great, but it doesn't appear to be available开发者_如何学Go in PySide. I came across https://wiki.qt.io/PySide_DBus_Integration on the Qt wiki - but that doesn't seem to get me there.
Any IPC framework supporting signals/slots would really make my day. Has anyone else had this problem - what was the final verdict?
There are three basic IPC solutions [source]:
- Pipes
- Sockets (sockets, ZMQ)
- System V IPC, like shared memory, message queue, semaphore, (DBus)
IPython uses ZMQ to solve similar problems. Here is some nice documentation about that: IPython QT interface
精彩评论