ホームページ >バックエンド開発 >Python チュートリアル >Python イベント ループのシャットダウンを例外なく処理する

Python イベント ループのシャットダウンを例外なく処理する

DDD
DDDオリジナル
2024-12-26 10:04:10792ブラウズ

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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。