How to get the reactor from ApplicationRunner in autobahnPython
问题 I have an autobahn client using the ApplicationRunner class from autobahn to connect to a WAMP router (crossbar). In the main section it attaches my ApplicationSession class "REScheduler" like this: 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) Now I need the reactor that the application runner started for other purposes