Функция 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
Last Friday, the National One Health Technical Committee (NOHTC) brought together key stakeholders across human, animal, and environmental health to:
✅ Review progress on previous action points
✅ Share updates on ongoing programmes and current outbreaks
✅ Align strategies to strengthen Nigeria’s health security through coordinated, multisectoral action
Together, we’re advancing a resilient, data-driven OneHealth system for prevention, preparedness, and response.
#HealthSecurity#NCDCNigeria#PublicHealth#OneHealth
🚨 Public Health Advisory: Ebola Virus Disease (EVD)
The Nigeria Centre for Disease Control and Prevention (NCDC) has released a public health Advisory following the announcement of an Ebola Outbreak in DR Congo.
Though no case has been reported in Nigeria, NCDC is closely monitoring the situation.
Key Preventive Measures:
▪️Wash hands frequently with soap & running water
▪️Avoid contact with sick individuals showing symptoms like fever, vomiting, diarrhoea & bleeding
▪️Avoid bushmeat and ensure all animal products are well-cooked
▪️Healthcare workers: maintain high IPC standards & use PPE 🧑⚕️
Read the full advisory 🔗https://ncdc.gov.ng/themes/common/docs/protocols/369_1757166366.pdf
If you or anyone you know (with recent travel to affected areas) experiences symptoms, call 📞 6232 or your State Ministry of Health hotline immediately.
Together, we can prevent the spread and protect Nigeria. 🇳🇬
#EbolaAdvisory#HealthSecurity#NCDCNigeria
🚨 PUBLIC HEALTH ADVISORY 🚨
The Nigeria Centre for Disease Control and Prevention (NCDC) has announced that Nigeria currently has no confirmed case of Ebola Virus Disease (EVD), following the ongoing outbreak in the Democratic Republic of the Congo and a reported imported case in Uganda.
🦠 Ebola Virus Disease is a severe viral illness transmitted through direct contact with infected bodily fluids or contaminated materials.
Common symptoms include:
✅Fever
✅Headache
✅Weakness
✅Muscle pain
✅Vomiting
✅Diarrhoea
✅severe cases, unexplained bleeding.
The NCDC is actively strengthening surveillance, laboratory readiness, infection prevention, and public awareness efforts across the country. Nigerians are advised to remain calm, maintain good hand hygiene, avoid misinformation, and report unusual illnesses promptly.
Stay informed through official public health channels only. Together, we can strengthen preparedness and protect public health.
#Ebola#PublicHealth#NCDCNigeria#HealthSecurity
#Ebola is caused by the Ebolavirus — a group of viruses with several species, including Zaire, Sudan, Bundibugyo, Taï Forest, and Reston ebolavirus (which affects animals but not humans).
Knowing the cause helps us strengthen prevention and response efforts. 💪🏾
Stay Safe, Stay Protected!
#EbolaAwareness#HealthSecurity#NCDCNigeria
Our first strategy 'Idea to Reality' incorporated a new vision and mission that cascaded into 5 Strategic Goals, 22 Objectives and 89 Activities.
TOMORROW, November 21, marks another major milestone for #healthsecurity champions as we launch the:
📣Nigeria Centre for Disease Control and Prevention Strategy (2023-2027): #VisiontoAction📣
Don't miss out. Join us online via bit.ly/NCDCStrategyLaunch
#IAmHealthSecurity
The D-DAY has commenced.
Join us now as we kickstart our #HealthSecurity partners meeting and the #NCDCStrategy 2023-2027 launch event.
🔗bit.ly/NCDCStrategyLaunch
#IAmHealthSecurity#Vision2Action