Last active
January 20, 2017 07:58
-
-
Save tiancheng91/e14b06f475cf604cb25e09a231d271d4 to your computer and use it in GitHub Desktop.
Tornado Demo
This file contains 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 tornado import gen | |
from tornado.ioloop import IOLoop | |
from tornado.locks import Event | |
event = Event() | |
@gen.coroutine | |
def waiter(): | |
print("Waiting for event") | |
yield event.wait() | |
print("Not waiting this time") | |
yield event.wait() | |
print("Done") | |
@gen.coroutine | |
def setter(): | |
print("About to set the event") | |
event.set() | |
@gen.coroutine | |
def runner(): | |
yield [waiter(), setter()] | |
IOLoop.current().run_sync(runner) |
This file contains 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 tornado import gen | |
from tornado.ioloop import IOLoop | |
from tornado.queues import Queue | |
q = Queue(maxsize=2) | |
@gen.coroutine | |
def consumer(): | |
while True: | |
item = yield q.get() | |
try: | |
print('Doing work on %s' % item) | |
yield gen.sleep(0.01) | |
finally: | |
q.task_done() | |
@gen.coroutine | |
def producer(): | |
for item in range(5): | |
yield q.put(item) | |
print('Put %s' % item) | |
@gen.coroutine | |
def main(): | |
# Start consumer without waiting (since it never finishes). | |
IOLoop.current().spawn_callback(consumer) | |
yield producer() # Wait for producer to put all tasks. | |
yield q.join() # Wait for consumer to finish all tasks. | |
print('Done') | |
IOLoop.current().run_sync(main) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment