Функция 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
Десять елочных украшений от художников и брендов
Собрали несколько вариантов елочных украшений: от тех, что вызывают ностальгию, до декора, который призван обратить внимание на хрупкость животного мира.
Смотрите карточки и забирайте украшения к себе в вишлист!
#newyear
🎄The Russian Embassy School hosted a New Year's fairy tale “New Year Knocks at the Door!”
In his address, Ambassador Albert P. Khorev thanked the Embassy staff for their hard work and wished them happiness, health, and success in serving their Motherland in the New Year.
#NewYear
As we begin the #newyear, here’s a recap of key housing news in 2021.
🏠✨ Our new year resolution = continue delivering homes to new flat buyers, while increasing supply to meet the strong housing demand from Singaporeans.
Happy New Year from the Venom team! We hope 2023 brings new opportunities and growth for all of our ecosystem participants and partners. We are excited to continue building and improving our platform to serve our community better. Here's to a successful and blockchain-filled year ahead! #NewYear#Blockchain
How to Make a New Year's Wish in Russian
🔻On New Year's Eve in Russia, there is a tradition of making a wish as the Kremlin clock strikes midnight:
1⃣Я хочу (+ noun in Genitive case):
• Я хочу счастья! (I want happiness).
• Я хочу здоровья! (I want health.)
2⃣Я хочу (+ Infinitive, perf./imperf.):
• Я хочу путешествовать! (I want to travel).
• Я хочу получить повышение! (I want to get a promotion).
3⃣Пусть (+ verb in the Future Tense):
• Пусть наступит мир! (May there be peace).
• Пусть придёт любовь! (May love come).
• Пусть все будут здоровы и счастливы! (May everyone be healthy and happy.)
🥂Let's write some wishes in Russian the comments!
🎧🗣👇
#NewYear
#useful_vocabulary
😎 Stay with @learnRCRussian
Father Frost Saddled a Fir Tree and Rode Through the Streets of Chelyabinsk, Launching Fireworks.
🔻The festive tree was tied to an Audi. Police are searching for the "New Year's wizard" and his "reindeer" to clarify the circumstances.
That's Russia, baby:)
#NewYear
#news
🎄 Stay with @learnRCRussian
🎄Father Frost, a rescuer from Murmansk, delivers gifts on mountain skis, a snowmobile and a festive illuminated all-terrain vehicle Бурлак(Burlak).
Video: Ministry of Emergency Situations (Russia)
#news
#NewYear
🎄 Stay with @learnRCRussian