我很乐意将基于 windows 的桌面应用程序作为Web界面,反之亦然。我的桌面应用程序是用wxRuby编写的,网络服务器是Sinatra(使用webrick)。最简单的想法就是将它们混合在一起,这不起作用。
此代码不起作用。 webserver和gui app不会同时运行。桌面应用程序首先运行,然后关闭; sinatra开始了。
require 'wx'
require 'sinatra'
configure do set :server, 'webrick' end
get '/' do
"Sinatra says hello"
end
class MyApp < Wx::App
def on_init
@frame = Wx::Frame.new( nil, -1, "Application" )
@frame.show
end
end
app = MyApp.new
app.main_loop
所以我考虑将最后两行改为
Thread.new do
app = MyApp.new
app.main_loop
end
再次。桌面应用程序运行直到关闭,然后Web服务器启动所以我尝试在一个线程中启动Sinatra。
Thread.new do
require 'sinatra'
configure do set :server, 'webrick' end
get '/' do
"Sinatra says hello"
end
end
require 'wx'
class MyApp < Wx::App
def on_init
@frame = Wx::Frame.new( nil, -1, "Application" )
@frame.show
end
end
app = MyApp.new
app.main_loop
再次。桌面应用程序运行直到关闭,然后Web服务器启动。
请指教,但请记住,我真的只想要一个流程。 如果您的解决方案是两个流程;我希望强大的进程间通信不需要轮询。
谢谢! 杰夫
答案 0 :(得分:2)
这至少会启动,不确定这是否会破坏某些线程规则。
require 'win32/process'
require 'sinatra/base'
class MyWebServer < Sinatra::Base
get '/' do
'Hello world!'
end
end
Thread.new do
MyWebServer.run! :host => 'localhost', :port => 4567
end
require 'wx'
class MyGui < Wx::App
def on_init
t = Wx::Timer.new(self, 55)
evt_timer(55) { Thread.pass }
t.start(1)
evt_idle { Thread.pass }
@frame = Wx::Frame.new( nil, -1, "Application" )
@frame.show
true
end
end
app = MyGui.new
app.main_loop
答案 1 :(得分:0)
你可以使用bowline,但我还没有使用它。