How to use LoopingCall with threads?(如何通过线程使用LoopingCall?)
本文介绍了如何通过线程使用LoopingCall?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个简单的例子:
from twisted.internet import utils, reactor
from twisted.internet import defer
from twisted.internet import threads
from twisted.internet.task import LoopingCall,deferLater
import time
def test1():
print 'test'
def test2(res):
l = []
for i in xrange(3):
l.append(threads.deferToThread(test4))
return defer.DeferredList(l)
def test3(res):
pass
def test4():
print 'thread start'
time.sleep(10)
print 'thread stop'
def loop():
d = defer.maybeDeferred(test1)
d = d.addCallback(test2)
d.addCallback(test3)
LoopingCall(loop).start(2)
reactor.run()
这是不正确的剧本。我想:
1) print 'test'
2) start 3 threads, waiting while all threads stops
3) sleep 2 seconds
4) repeat
推荐答案
LoopingCall
将每隔N秒运行您传递给它的Callable,其中N是您传递给Start的编号。它不会在上一次调用结束后等待N秒,而是在上一次调用开始后等待N秒。换句话说,它试图保持在N和开始时间定义的间隔内,以N秒、N*2秒、N*3秒等时间运行呼叫。
如果进程太忙而无法进行其中一个调用,它将跳过该迭代。如果调用返回延迟,并且到下一个时间间隔仍未触发延迟,则它将跳过该迭代。
因此,您可以通过在loop
的末尾返回d
来更接近您想要的行为,但LoopingCall
不会总是在延迟触发后等待2秒。它将等待N秒的下一个倍数,从开始时间开始计数,然后再次调用该函数。
这篇关于如何通过线程使用LoopingCall?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何通过线程使用LoopingCall?
猜你喜欢
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01