如何从AutobahnPython中的ApplicationRunner获取反应堆

How to get the reactor from ApplicationRunner in autobahnPython(如何从AutobahnPython中的ApplicationRunner获取反应堆)
本文介绍了如何从AutobahnPython中的ApplicationRunner获取反应堆的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Autobahn客户端,它使用Autobahn中的ApplicationRunner类连接到WAMP路由器(Crosbar)。在主要部分中,它按如下方式附加了我的ApplicationSession类"Rescheduler":

if __name__ == '__main__':
    from autobahn.twisted.wamp import ApplicationRunner

    runner = ApplicationRunner(url=u"ws://localhost:8080/ws", realm=u"RE_acct")

    runner.run(REScheduler, start_reactor=True, auto_reconnect=True)

现在,我还需要应用程序运行器启动的反应器用于其他目的。例如,调用一些reactor.callLater(...)。 我怎么才能进入这个反应堆。我在文档中没有找到任何内容。

推荐答案

Twisted(遗憾的是)使用(进程)全局反应器对象。这意味着,一旦选择了反应器(如果设置start_reactor=TrueApplicationRunner就会这样做),只需在代码中需要它的位置from twisted.internet import reactor执行from twisted.internet import reactor

Ayncio已正确封装事件循环(单个进程中可以有多个事件循环)。

txaio提供了一个在两者上都适用的方便方法(它将在Twisted中公开单个全局反应器,并将公开启动ApplicationRunner的事件循环):txaio.config.loop = reactor

这篇关于如何从AutobahnPython中的ApplicationRunner获取反应堆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)