使用 EventMachine 的 SOAP 调用
有什么方法可以在 EventMachine 中发出非阻塞 SOAP 请求吗?
我正在创建一个 ruby 应用程序,它使用 adwords4r gem 与 google adwords api(基于 SOAP)进行交互。该应用程序使用 EM 通过 stomp 连接接收消息,然后通过对 adwords api 进行 SOAP 调用来处理这些消息。显然,我需要这些调用是非阻塞的,因为处理将在反应器线程内进行。一种选择是使用 EM.defer,但我不想在线程池中产生一堆线程的开销。
Is there any way to make non-blocking SOAP requests within EventMachine?
I'm creating a ruby application which interacts with the google adwords api (which is SOAP based), using the adwords4r gem. The application uses EM to receive messages over a stomp connection, and then processes those messages by making SOAP calls to the adwords api. Obviously I need those calls to be non-blocking, since the processing will be within the reactor thread. One option would be to use EM.defer, but I'd rather not have the overhead of a bunch of threads in a threadpool.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HandSoap 可以使用 EventMachine。
HandSoap can use EventMachine.
在通过这个问题获得风滚草徽章后,我最终在#eventmachine IRC 上提问。显然,除了使用
EM.defer
之外,没有任何事件机器友好的选项来进行 SOAP 调用After earning a tumbleweed badge with this question I ended up asking on the #eventmachine IRC. Apparently there is no eventmachine-friendly options for making SOAP calls, besides using
EM.defer