因此,当前我正在尝试运行以下内容:
Def SomeThingIWantToDo():
#my code that takes forever to process
Class SomeClass
#class variables
def __init__(self):
#Init Code
def certainevent(self):
print("Started")
SomeThingIWantToDo()
return True
现在,当此特定事件发生时,它将打印“ started”并调用SomeThingIWantToDo函数,但是此函数需要大约10秒钟的处理时间,并且在此函数运行时,事件定义将被暂停并且不会返回true并且引发此事件的某些应用程序将被完全冻结。
我尝试了多种使用线程的方法,但是我根本无法使它工作。 您有什么建议可以给我吗?