Python의 Async/Await를 사용한 "Fire and Forget"
Python의 async/await 구문에서 기다리지 않고 비동기 함수를 실행하면 원하는 "실행 후 잊어버리는" 효과를 얻지 못합니다. 대신 프로그램은 런타임 경고와 함께 종료됩니다.
asyncio.Task for "Fire and Forget"
asyncio에서 "fire and 잊어버리기"를 구현하려면 asyncio를 사용하세요. 백그라운드에서 원하는 작업을 수행하는 작업을 생성하는 작업입니다. asyncio.ensure_future(async_foo())를 호출하면 async_foo()와 연결된 작업이 시작되고 완료될 때까지 기다리지 않습니다. 이는 명시적으로 대기할 필요가 없는 비동기 작업에 대한 간단하면서도 효과적인 접근 방식입니다.
async def async_foo(): print("Async foo started") await asyncio.sleep(1) print("Async foo done") async def main(): asyncio.ensure_future(async_foo()) # Fire and forget async_foo()
보류 중인 작업 완료
작업은 asyncio를 사용하여 생성됩니다. 이벤트 루프가 완료되기 전에 작업이 완료될 것으로 예상됩니다. 작업이 보류 중인 경우 경고가 생성됩니다. 이를 방지하려면 이벤트 루프가 완료되면 보류 중인 모든 작업을 명시적으로 기다립니다.
async def main(): asyncio.ensure_future(async_foo()) # Fire and forget async_foo() loop = asyncio.get_event_loop() await asyncio.gather(*asyncio.Task.all_tasks())
기다리는 대신 작업 취소
또는 원하지 않는 경우 특정 작업을 무기한 기다리면 취소할 수 있습니다:
async def echo_forever(): while True: print("Echo") await asyncio.sleep(1) async def main(): asyncio.ensure_future(echo_forever()) # Fire and forget echo_forever() loop = asyncio.get_event_loop() for task in asyncio.Task.all_tasks(): task.cancel() with suppress(asyncio.CancelledError): await task
위 내용은 Python의 Async/Await를 사용하여 'Fire and Forget'을 실제로 달성하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!