用python编写轮询函数的更好方法

jecbmhm3  于 2022-12-20  发布在  Python
关注(0)|答案(1)|浏览(155)

我编写了一个轮询函数来检查reg_result变量的值,时间为120秒。

reg_result = 0
while_timeout = time.time() + 120
while reg_result is not "REGISTERED" and time.time() < while_timeout:
    reg_result = LeshanObj.validate_reg_time(parameter_1)

有没有其他更好的方法来编写轮询方法?
是否可以不使用while循环?

mrfwxfqh

mrfwxfqh1#

python Polling(https://pypi.python.org/pypi/polling/0.3.0)中有一个库,您可以使用此库

from polling import TimeoutException, poll
try:
    poll(lambda: reg_result=='REGISTERED', timeout=120, step=1)
except TimeoutException as tee:
    print "Value was not registered"

希望有帮助。

相关问题