Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач.
Она работает в нескольких режимах.
1. Самый простой - ждем завершения всех задач
async def main():
tasks = [asyncio.create_task(do_it(i)) for i in range(10)]
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.ALL_COMPLETED
)
for task in done:
try:
print(task.result())
except Exception as e:
print(e)
Очень похоже на gather, но работает не так.
▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done
▫️не гарантирует порядок результатов так как оба объекта это set
▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат.
2. Ждем завершения первой задачи, даже если там ошибка.
async def main():
tasks = [asyncio.create_task(do_it(i)) for i in range(3)]
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.FIRST_COMPLETED
)
# в done может быть несколько задач!
for task in done:
try:
print(task.result())
except Exception as e:
print(f"Fail: {e}")
# Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать
for task in pending:
task.cancel()
В сете done будут таски которые успели завершится, причем как успешно так и нет.
3. До первой ошибки.
Тоже самое, но с аргументом FIRST_EXCEPTION
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.FIRST_EXCEPTION
)
Функция завершается как только первая задача упадет с ошибкой.
Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные.
↗️ Полный листинг примеров здесь
#async
Our #Measles situation report for weeks 45, 2024 has been published.
The weekly report provides a summary of the #Measles epidemiological situation as at November 2024 and response activities in Nigeria.
🔗 Download, read, and share via: https://ncdc.gov.ng/ncdc.gov.ng/themes/common/files/sitreps/ac1f0718b5d4964c70a2de687309f94d.pdf
#Measles is highly infectious.
Early symptoms are high-grade fever, cough, runny nose, red eyes & tiny white spots in the mouth.
Please report immediately to a health facility when these symptoms are observed.
Read more via:
https://ncdc.gov.ng/diseases/info/M
REDNESS OF THE EYE is an early indication of #Measles when observed with symptoms like high-grade fever, running nose, dry cough & tiny spots in the mouth.
Please report immediately to a health facility when these symptoms are observed.
Visit https://ncdc.gov.ng/diseases/info/M for more information.
#Measles is highly infectious.
Early symptoms are high-grade fever, cough, runny nose, red eyes & tiny white spots in the mouth.
Please report immediately to a health facility when these symptoms are observed.
Read more via:
https://ncdc.gov.ng/diseases/info/M
Runny nose, red eyes, cough, high fever and tiny white spots in the mouth are early symptoms of #measles infection.
Seek immediate medical attention if you experience these symptoms or notice them in your loved ones.
Visit https://ncdc.gov.ng/diseases/info/M to read more
#Measles is highly contagious.
Take all persons showing symptoms of the disease to the nearest healthcare centre for accurate diagnosis and treatment.
Read more via https://ncdc.gov.ng/diseases/info/M
#Measles is an acute, highly infectious disease with initial symptoms of high-grade fever, cough, runny nose, red eyes & tiny white spots in the mouth.
Please report to a health facility immediately if you experience these symptoms.
RUNNING NOSE is an early indication of #Measles when observed with symptoms like high fever, red eyes, dry cough & tiny spots in the mouth.
Please report immediately to a health facility when these symptoms are observed.
Visit https://ncdc.gov.ng/diseases/info/M for more.
REDNESS OF THE EYE is an early indication of #Measles when observed with symptoms like high-grade fever, running nose, dry cough & tiny spots in the mouth.
Please report immediately to a health facility when these symptoms are observed.
Visit https://ncdc.gov.ng/diseases/info/M for more.
#Measles is highly contagious.
Isolate all suspected cases of the disease and take them to the nearest healthcare facility immediately.
Read more via https://ncdc.gov.ng/diseases/info/M
#Measles is an acute, highly infectious disease with initial symptoms of high fever, cough, runny nose, red eyes & tiny white spots in the mouth.
Please immediately report to a health facility if you experience these symptoms.
Read more: https://ncdc.gov.ng/diseases/info/M
#Measles is not just a rash.
Routine immunisation must remain a priority for parents and caregivers.
#TakeResponsibility to prevent the spread of such as #Measles.