python 以优雅的方式中断Python multiprocessing.Pool

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 以优雅的方式中断Python multiprocessing.Pool相关的知识,希望对你有一定的参考价值。

import multiprocessing
from multiprocessing import Pool
import time
import signal


def worker():
    while True:
        print time.time()
        time.sleep(.5)

def worker_init():
    # ignore the SIGINI in sub process, just print a log
    def sig_int(signal_num, frame):
        print 'signal: %s' % signal_num
    signal.signal(signal.SIGINT, sig_int)


pool = Pool(2, worker_init)
result = pool.apply_async(worker)
while True:
    try:
        result.get(0xfff)
    # catch TimeoutError and get again
    except multiprocessing.TimeoutError as ex:
        print 'timeout'

以上是关于python 以优雅的方式中断Python multiprocessing.Pool的主要内容,如果未能解决你的问题,请参考以下文章

python递归的方式打印九九乘法表

Python:增加全局变量的优雅方式

python检查字符串是不是为空-这是优雅的方式吗?

Python笔记Python多线程进程如何正确响应Ctrl-C以实现优雅退出

Python笔记Python多线程进程如何正确响应Ctrl-C以实现优雅退出

python中确保字符串适合作为文件名的优雅方式?