如何在课堂活动中建立话题

时间:2018-11-04 16:56:15

标签: python python-3.x

因此,当前我正在尝试运行以下内容:

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并且引发此事件的某些应用程序将被完全冻结。

我尝试了多种使用线程的方法,但是我根本无法使它工作。 您有什么建议可以给我吗?

0 个答案:

没有答案