0
A
回答
0
扭曲有幾個選項。你可以使用一個簡單的函數來檢查一個條件。
from twisted.internet import reactor
expire = 10
def tick():
expire -= 1
if expire == 0:
reactor.stop()
return
reactor.callLater(1, tick)
reactor.callLater(0, tick)
reactor.run()
另外也twisted.internet.task.LoopingCall http://twistedmatrix.com/documents/current/api/twisted.internet.task.LoopingCall.html
from twisted.internet.task import LoopingCall
def tick():
if expired = 0:
reactor.stop()
return
do_something()
task = LoopingCall(tick)
task.start()
reactor.run()
如果您使用的是扭曲的應用程序(twistd來)或一些其它的多業務,也有twisted.application.internet.TimerService http://twistedmatrix.com/documents/current/api/twisted.application.internet.TimerService.html
相關問題
- 1. 顯示python睡眠函數的倒計時
- 2. 睡眠和睡眠有沒有區別?
- 3. 睡眠計時器,當電話睡
- 4. PHP沒有秒倒計時
- 5. jquery倒計時插件:沒有倒計時,只有零
- 6. SFML - 睡眠計算
- 7. 爲Python線程計算平均睡眠
- 8. jQuery的倒數計時器沒有倒計時
- 9. 睡眠內線程沒有睡眠外線程 - Java
- 10. Python:睡眠方法
- 11. 蟒蛇,倒計時器,不睡覺
- 12. 睡眠()超時
- 13. 睡眠準確的時間在python
- 14. 倒計時在Python
- 15. 谷歌腳本電子表格中的倒計時或睡眠功能
- 16. jQuery倒計時 - 每日倒計時,還有次要倒計時?
- 17. Android - 取消睡眠計時器任務
- 18. Python睡眠直到某個時間
- 19. Python執行和睡眠時間差異
- 20. 在睡眠時查殺python進程
- 21. 沒有年的Javascript倒計時
- 22. Box2D睡眠時間
- 23. 睡眠沒有同步語義嗎?
- 24. 在JavaScript中睡眠 - 沒有setTimeout
- 25. 線程沒有從睡眠中醒來
- 26. 睡眠和打印沒有換行符?
- 27. 睡眠和喚醒python
- 28. 與睡眠相比,計時器有更好的精確度()
- 29. Python睡眠過程進入無限期睡眠
- 30. 睡眠()或睡眠()的準確程度
希望有用:http://twistedmatrix.com/documents/12.0.0/api/twisted.internet.task.LoopingCall.html – sarnold