_thread在python 3.6上的一个池中有多个进程

时间:2018-12-10 06:34:08

标签: python multithreading pool

我的代码如此宁静

def Checks(self):
        _thread.start_new_thread(self.update_config, ())
        _thread.start_new_thread(self.load_updates, ('Scan-thread', ))
        _thread.start_new_thread(self.check_exit, ('exit-thread', ))

        while True:
            schedule.run_pending()
            time.sleep(1)

所以我的问题是:是否可以在一个池中运行所有线程? ,而不是只有3个代码行只有一个_thread,有什么主意吗?

0 个答案:

没有答案