开发者

PySide IPC with signals/slots

开发者 https://www.devze.com 2023-03-26 11:57 出处:网络
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 avai

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

0

精彩评论

暂无评论...
验证码 换一张
取 消