Created
March 3, 2016 17:00
-
-
Save pkazmierczak/c3e1be49b7a594e1009b to your computer and use it in GitHub Desktop.
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
import trollius as asyncio | |
from trollius import From | |
@asyncio.coroutine | |
def factorial(name, number): | |
f = 1 | |
for i in range(2, number + 1): | |
print("Task %s: Compute factorial(%d)..." % (name, i)) | |
yield From(asyncio.sleep(1)) | |
f *= i | |
print("Task %s completed! factorial(%d) is %d" % (name, number, f)) | |
loop = asyncio.get_event_loop() | |
tasks = [ | |
asyncio.async(factorial("A", 8)), | |
asyncio.async(factorial("B", 3)), | |
asyncio.async(factorial("C", 4))] | |
loop.run_until_complete(asyncio.wait(tasks)) | |
loop.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment