运行以下流行的 eventmachine 示例时:
require 'rubygems'
require 'eventmachine-le'
EM.run do
p = EM::PeriodicTimer.new(1) do
puts "Tick ..."
end
EM::Timer.new(100) do
puts "BOOM"
p.cancel
end
EM::Timer.new(120) do
puts "The googles, they do nothing"
EM.stop
end
end
如果系统时间更早更改,例如将系统日期从 2013.10.12 更改为 2013.10.10,程序将立即停止。Eventmachine 项目中是否存在错误或其他错误?需要你的帮助。谢啦~