检查队列中的数据是否不对称

时间:2019-02-18 05:38:13

标签: python asynchronous

我写了一个函数来检查队列中是否有数据,不使用while True来使程序始终运行,就像这样:

if __name__ == '__main__':

    while True:
        res = analy_model.get_data_in_queue()
        if not res:
            sleep(MAIN_SLEEP_TIME)
            continue

        for do in res:
            # Do operations

        sleep(1)

我认为使用while True并不是很有趣。

为了检查队列是否为异步队列,我阅读了很多资源,但感到困惑。

是否有删除while True循环的建议?

感谢您分享知识

0 个答案:

没有答案