Python에서 Async/Await를 사용하여 'Fire and Forget'을 어떻게 달성할 수 있나요?

Mary-Kate Olsen
풀어 주다: 2024-11-14 10:21:01
원래의
852명이 탐색했습니다.

How Can I Achieve

Async/Await "Fire and Forget" in Python

Problem Statement

Async/await provides a convenient syntax for asynchronous programming in Python. However, there are situations where we want to initiate an asynchronous operation without waiting for its completion. This is often referred to as "fire and forget."

Solution Using asyncio.Task

Python provides asyncio.Task, which allows us to create a task that will execute in the background. Using asyncio.Task, we can achieve "fire and forget" by adding the following code to our script:

import asyncio

async def async_foo():
    # Do some asynchronous stuff here

# Create a task for async_foo()
asyncio.ensure_future(async_foo())
로그인 후 복사

This creates a task for async_foo() that will execute asynchronously without blocking the main thread.

Handling Pending Tasks

If our script completes before all tasks are finished, we can use the following code to await all pending tasks:

pending_tasks = asyncio.Task.all_tasks()
loop.run_until_complete(asyncio.gather(*pending_tasks))
로그인 후 복사

This ensures that all tasks have completed before the script exits, preventing any warnings or errors.

Cancelling Tasks

In some cases, we may not want to wait for tasks to complete. We can cancel them using the following code:

for task in pending_tasks:
    task.cancel()
    with suppress(asyncio.CancelledError):
        loop.run_until_complete(task)
로그인 후 복사

This cancels the tasks and suppresses any errors that may be raised as a result of the cancellation.

위 내용은 Python에서 Async/Await를 사용하여 'Fire and Forget'을 어떻게 달성할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿