>백엔드 개발 >파이썬 튜토리얼 >예외 없이 Python 이벤트 루프 종료 처리

예외 없이 Python 이벤트 루프 종료 처리

DDD
DDD원래의
2024-12-26 10:04:10786검색

Handling Python event loop shutdown without exceptions

#! /usr/bin/env python3

from asyncio import gather, get_event_loop, sleep, Event
from signal import SIGINT, SIGTERM


def shutdown_signaled():
    print('Shutdown requested.')
    shutdown.set()


async def small_work(shutdown):
    while not shutdown.is_set():
        await sleep(0.5)
        print('Small work is done!')

    print('Exited small work.')


async def big_work(shutdown):
    while not shutdown.is_set():
        await sleep(5)
        print('Big work is done!!!')

    print('Exited big work.')


# when this event is set the application is ready to shutdown
shutdown = Event()

# setting up our own handler for Ctrl+C and SIGTERM (sent with kill)
# by setting this handler running tasks will not get an exception thrown at them
event_loop = get_event_loop()
event_loop.add_signal_handler(SIGINT, shutdown_signaled)
event_loop.add_signal_handler(SIGTERM, shutdown_signaled)

# combining our two tasks as one
combined_tasks = gather(small_work(shutdown), big_work(shutdown))

# run our tasks and block
event_loop.run_until_complete(combined_tasks)

위 내용은 예외 없이 Python 이벤트 루프 종료 처리의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.