em-http-request - 我在哪里放置EventMachine.stop?

时间:2012-04-25 13:37:48

标签: ruby http eventmachine

我想每隔10秒迭代一次JSON-API,如果在JSON数据中找到某个密钥,则使用相同的连接(keepalive)执行第二次HTTP请求。如果我没有在我的代码中放置EM.stop,程序将在req1.callback中完成处理后停止等待。

如果我将EM.stop置于req2.callback内,则可以按预期进行迭代。

但是如果JSON文档没有包含密钥foobar,则程序在req1.callback中完成处理后停止等待。

如果我在req1.callback中的最后一行添加EM.stop,则如果JSON文档具有键foobar,则req2.callback将被中止。

如果JSON文档具有我想要的内容,我应该如何正确放置EM.stop以使其迭代?

require 'eventmachine'
require 'em-http'

loop do    
  EM.run do
    c = EM::HttpRequest.new 'http://api.example.com/'

    req1 = c.get :keepalive => true
    req1.callback do
      document = JSON.parse req1.response
      if document.has_key? foobar   
        req2 = c.get :path => '/data/'
        req2.callback do
          puts [:success, 2, req2]
          puts "\n\n\n"
          EM.stop
        end
      end
    end
  end

  sleep 10
end

2 个答案:

答案 0 :(得分:2)

如果您想使用计时器,您应该使用EM的实际计时器支持:http://eventmachine.rubyforge.org/EventMachine.html#M000467

例如:

require 'eventmachine'
require 'em-http'

EM.run do
  c = EM::HttpRequest.new 'http://google.com/'
  EM.add_periodic_timer(10) do
    # Your logic to be run every 10 seconds goes here!
  end
end

这样,您可以让EventMachine一直运行,而不必每10秒启动/停止一次。

答案 1 :(得分:0)

require 'eventmachine'
require 'em-http'

loop do    
  EM.run do
    c = EM::HttpRequest.new 'http://google.com/'

    req1 = c.get :keepalive => true
    req1.callback do
      begin
        document = JSON.parse req1.response
        if document.has_key? foobar   
          req2 = c.get :path => '/data/'
          req2.callback do
            puts [:success, 2, req2]
            puts "\n\n\n"
            EM.stop
          end
        end
      rescue => e
        EM.stop
        raise e
      end
    end
    req1.errback do
      print "ERROR"
      EM.stop
    end
  end

  sleep 10
end