我有一个高速公路客户端,它使用高速公路上的 ApplicationRunner 类连接到 WAMP 路由器(交叉开关)。在主要部分中,它附加了我的 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)
现在我还需要应用程序运行器为其他目的启动的反应器。比如调用 some reactor.callLater(...)
。我怎样才能访问这个反应堆。我在文档中没有找到任何东西。