forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathasyncio_task_add_done_callback.py
54 lines (42 loc) · 1.36 KB
/
asyncio_task_add_done_callback.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Test the Task.add_done_callback() method
try:
import asyncio
except ImportError:
print("SKIP")
raise SystemExit
async def task(t, exc=None):
if t >= 0:
await asyncio.sleep(t)
if exc:
raise exc
def done_callback(t, er):
print("done", repr(t), repr(er))
async def main():
# Tasks that aren't done only execute done callback after finishing
print("=" * 10)
t = asyncio.create_task(task(-1))
t.add_done_callback(done_callback)
print("Waiting for task to complete")
await asyncio.sleep(0)
print("Task has completed")
# Task that are done run the callback immediately
print("=" * 10)
t = asyncio.create_task(task(-1))
await asyncio.sleep(0)
print("Task has completed")
t.add_done_callback(done_callback)
print("Callback Added")
# Task that starts, runs and finishes without an exception should return None
print("=" * 10)
t = asyncio.create_task(task(0.01))
t.add_done_callback(done_callback)
try:
t.add_done_callback(done_callback)
except RuntimeError as e:
print("Second call to add_done_callback emits error:", repr(e))
# Task that raises immediately should still run done callback
print("=" * 10)
t = asyncio.create_task(task(-1, ValueError))
t.add_done_callback(done_callback)
await asyncio.sleep(0)
asyncio.run(main())