Last active
February 16, 2022 07:15
-
-
Save stevepeak/4520732 to your computer and use it in GitHub Desktop.
Tornado Long-Polling Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from time import sleep | |
from tornado.httpserver import HTTPServer | |
from tornado.ioloop import IOLoop | |
from tornado.web import Application, asynchronous, RequestHandler | |
from multiprocessing.pool import ThreadPool | |
_workers = ThreadPool(10) | |
def run_background(func, callback, args=(), kwds={}): | |
def _callback(result): | |
IOLoop.instance().add_callback(lambda: callback(result)) | |
_workers.apply_async(func, args, kwds, _callback) | |
# blocking task like querying to MySQL | |
def blocking_task(n): | |
sleep(n) | |
return n | |
class Handler(RequestHandler): | |
@asynchronous | |
def get(self): | |
run_background(blocking_task, self.on_complete, (10,)) | |
def on_complete(self, res): | |
self.write("Test {0}<br/>".format(res)) | |
self.finish() | |
HTTPServer(Application([("/", Handler)],debug=True)).listen(8888) | |
IOLoop.instance().start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Copied from http://tornadogists.org/2185380/