gpt4 book ai didi

ruby - QtRuby 与 DRb 或 EventMachine

转载 作者:数据小太阳 更新时间:2023-10-29 07:50:58 24 4
gpt4 key购买 nike

我想使用 Qt 在 Ruby 中编写一个应用程序,它将通过网络与其他实例进行通信。

如何将 Qt 的事件循环与 DRb 或 EventMachine 集成?

编辑:

当我有更多时间时,我找到了答案,我会发布它

最佳答案

require 'eventmachine'
require 'Qt4'

app = Qt::Application.new(ARGV)
hello_button = Qt::PushButton.new("Hello EventMachine")
hello_button.resize(100,20)
hello_button.show

EventMachine.run do
EM.add_periodic_timer(0.01) do
app.process_events
end
end

关于ruby - QtRuby 与 DRb 或 EventMachine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6591197/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com