1

我正在使用扭曲的框架,我需要跟踪自事件开始以来已经过去了多少时间,并在经过一定时间后执行操作。

在我看来,最好的方法是检查反应堆的每个滴答声的时间戳。如果这是最好的方法,我该怎么做?如果不是,有什么更好的方法?

4

2 回答 2

2

你想用callLater.

这是一个完整的、可运行的示例,它可以满足您的要求,“在事件开始后经过一定量(时间)后执行操作”。

from twisted.internet import reactor
certainAmount = 0.73 # this is in seconds
def startedEvent():
    print 'started event'
    reactor.callLater(certainAmount, performAnAction)

def performAnAction():
    print 'performed an action'
    reactor.stop()
startedEvent()
reactor.run()

(我不认为反应堆中真的有任何“滴答声”之类的东西,至少,不是我猜你的意思。)

于 2010-07-16T02:43:24.827 回答
1

我一直在寻找的功能似乎在这里描述: Running a functionperiodic in twisted protocol

这是我的代码:

def check_time(self):
        for game in self.games:
            if self.games[game]['state'] == 'GAME': 
                game_start_time = self.games[game]['starttime']
                if game_start_time is None:
                    continue
                elif game_start_time + 300 > time.time():
                    #300 seconds = 5 minutes.
                    continue
                else:
                    self.end_game(game)
def __init__(self):
    self.timecheck = task.LoopingCall(self.check_time)
    self.timecheck.start(1)
于 2010-07-16T00:01:50.100 回答