如何运行两个python事件循环并共享相同的内存?

发布于 2025-01-10 04:43:40 字数 563 浏览 0 评论 0原文

我正在使用twisted和PySide2创建一个可以通过网络发送信息的应用程序。然而,twisted 的reactorPySide2 的QApplication 都需要一个永远运行的事件循环。

我需要的是当twisted收到新消息时,我希望它更新PySide2窗口中的消息。因此,这意味着 twisted 和 PySide2 需要共享相同的内存。 这是一些示例代码:

def dataReceived(self, data): # a function inside a twisted class
    QLabel.setText(data.decode()) # a pyside2 object

我无法使用线程,因为twisted和PySide2都需要在主线程中;而且多处理不能像QWidget对象那样共享内存。

那么我怎样才能同时运行这两个事件循环,并让它们共享相同的内存呢?

I am using twisted and PySide2 to create an app that can send information through network. However, twisted's reactor and PySide2's QApplication both need an event loop that runs forever.

What I need is when twisted receives a new message, I want it to update the message in the PySide2 Window. So that means twisted and PySide2 need to share the same memory.
Here's some sample code:

def dataReceived(self, data): # a function inside a twisted class
    QLabel.setText(data.decode()) # a pyside2 object

I cannot use threading, because twisted and PySide2 both needed to be in the main thread; And multiprocessing can't share memory like QWidget objects.

So how can I run these two event loops at the same time, and let them share the same memory?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白日梦 2025-01-17 04:43:40

You can run the Twisted and Qt5 event loops side-by-side using https://pypi.org/project/qt5reactor/.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文