从线程

时间:2018-06-04 23:27:04

标签: python tornado

我正在运行龙卷风,并从单独的线程监控各种数据源等。在这种情况下,如果用户关闭浏览器,则关闭Web服务器很重要。我只是依靠来自浏览器的心跳请求,然后想要停止龙卷风ioloop。这证明非常困难:

# Start the main processing loop
mLoop = threading.Thread(target = mainLoop, args=())
mLoop.start()

# Set up webserver
parser = argparse.ArgumentParser(description="Starts a webserver.")
parser.add_argument("--port", type=int, default=8000, help="The port")
args = parser.parse_args()

handlers = [(r"/", IndexHandler), (r"/websocket", WebSocket),
            (r'/static/(.*)', tornado.web.StaticFileHandler,
             {'path': os.path.normpath(os.path.dirname(__file__))})]
application = tornado.web.Application(handlers)
application.listen(args.port)

webbrowser.open("http://localhost:%d/" % args.port, new=2)

tornado.ioloop.IOLoop.instance().start()

在某些情况下,主循环需要停止龙卷风,但它无法访问ioloop以调用IOLoop.stop()(或者可能更好的IOLoop.instance.stop())因为它'不是启动它的线程。

实现这一目标的最佳方式是什么?

1 个答案:

答案 0 :(得分:0)

application.listen返回一个HTTPServer实例,您可以停止该实例,关闭套接字/端口。然后关闭IOLoop实例。

from tornado.web import Application
from tornado.ioloop import IOLoop

# starting
application = Application(...)
server = application.listen(args.port)
# depends on your use-case
eventLoopThread = Thread(target=IOLoop.current().start)
eventLoopThread.daemon = True
eventLoopThread.start()

# stopping
server.stop()
IOLoop.current().stop()