Skip to content

Instantly share code, notes, and snippets.

@keis
Created April 14, 2014 08:27
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save keis/10627651 to your computer and use it in GitHub Desktop.
Save keis/10627651 to your computer and use it in GitHub Desktop.
asyncio examples
import asyncio
@asyncio.coroutine
def waiting(r):
print("hello from waiting -", r)
yield from asyncio.sleep(2)
print("bye from waiting -", r)
return r
@asyncio.coroutine
def serial():
a = yield from waiting(1)
b = yield from waiting(2)
c = yield from waiting(a + b)
print(c)
@asyncio.coroutine
def parallel():
a, b = yield from asyncio.gather(waiting(1), waiting(2))
c = yield from waiting(a + b)
print(c)
@asyncio.coroutine
def postponed():
a = yield from waiting(1)
b = yield from waiting(2)
asyncio.Task(waiting('after'))
return a + b
@asyncio.coroutine
def pp_caller():
r = yield from postponed()
print("got result from postponed -", r)
yield from asyncio.sleep(3)
loop.stop()
loop = asyncio.get_event_loop()
print("-- serial")
loop.run_until_complete(serial())
print("-- parallel")
loop.run_until_complete(parallel())
print("-- postponed")
asyncio.Task(pp_caller())
loop.run_forever()
loop.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment