如何停止执行程序中的循环运行?

时间:2019-03-26 06:02:49

标签: python python-3.x multithreading python-asyncio concurrent.futures

我正在运行需要时间才能完成的功能。用户可以选择停止此功能/事件。有没有简单的方法来停止线程或循环?

class ThreadsGenerator:
    MAX_WORKERS = 5

    def __init__(self):
        self._executor = ThreadPoolExecutor(max_workers=self.MAX_WORKERS)
        self.loop = None
        self.future = None

    def execute_function(self, function_to_execute, *args):
        self.loop = asyncio.get_event_loop()
        self.future = self.loop.run_in_executor(self._executor, function_to_execute, *args)

        return self.future

我想在用户单击“停止”按钮时尽快停止该功能,而不是等待完成其工作。

谢谢!

1 个答案:

答案 0 :(得分:3)

  

是否有简单的方法来停止线程或循环?

您不能强行停止线程。要实现取消功能,您的函数将需要接受should_stop参数,例如threading.Event的实例,并偶尔检查是否已设置。

如果您确实需要强行停止,并且您的函数可以通过multiprocessing在单独的进程中运行,则可以在单独的进程中运行它,并在应该停止的情况下终止该进程。有关在异步环境下对该方法的详细说明,请参见this answer