forked from fl4p/batmon-ha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
38 lines (28 loc) · 899 Bytes
/
test.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
import asyncio
from functools import partial
shutdown = False
async def fetch_loop(fn, max_errors=4, period=0.1):
num_errors_row = 0
while not shutdown:
try:
await fn()
num_errors_row = 0
except Exception as e:
num_errors_row += 1
# logger.error('Error (num %d) reading BMS: %s', num_errors_row, e)
# logger.error('Stack: %s', traceback.format_exc())
if num_errors_row > max_errors:
# logger.warn('too many errors, abort')
break
await asyncio.sleep(period)
async def main():
def ap(s):
print(s)
async def t0():
print("t0")
async def t1():
print("t1")
tasks = [t0, t1, partial(ap, "ap")]
loops = [fetch_loop(fn) for fn in tasks]
await asyncio.wait(loops, return_when="FIRST_COMPLETED")
asyncio.run(main())