我正在尝试从函数列表中随机调用一个函数。调用该函数时,我要启动一个新线程。
我的代码如下:
jobs = [func1, func2, func3, func4]
def run_threaded(job_func):
info("Number of active threads: " + str(threading.active_count()))
info("Threads list length: " + str(len(threading.enumerate())))
job_thread = threading.Thread(target=job_func)
job_thread.start()
job_thread.join()
当我在不带括号的情况下调用该函数时,则每隔一分钟又一次调用同一函数。即
schedule.every(1).minutes.do(run_threaded, random.choice(jobs))
当我调用带有附加括号的函数时,即
schedule.every(1).minutes.do(run_threaded, random.choice(jobs)())
我收到以下错误:
Exception in thread Thread-7:
Traceback (most recent call last):
File "C:\Users\(USER)\AppData\Local\Programs\Python\Python37-32\lib\threading.py", line 917, in _bootstrap_inner
self.run()
File "C:\Users\(USER)\AppData\Local\Programs\Python\Python37-32\lib\threading.py", line 865, in run
self._target(*self._args, **self._kwargs)
TypeError: 'bool' object is not callable
它期望某些东西作为参数吗?我是否必须重写子类中的run()方法?
答案 0 :(得分:0)
移交给run_threaded的函数始终是相同的,因此您需要在run_threaded内部进行随机选择,或者在schedule.every(1).minutes.do(...)
中提供的函数内部进行随机选择。
您的第二个代码进行了随机作业选择,并立即运行它。如果我们将代码包装在函数中,以便在run_threaded
调用此函数时完成作业选择+调用,它将完成您想要的操作。 lambda
很适合这里。
schedule.every(1).minutes.do(run_threaded, lambda:random.choice(jobs)())