使用 ayncio 实现 CountDownLatch

Posted 小径

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 ayncio 实现 CountDownLatch相关的知识,希望对你有一定的参考价值。

class CountDownLatch(object):
    def __init__(self, count=1):
        self.count = count
        self.lock = asyncio.Lock()
        self.event = asyncio.Event()
        

    async def count_down(self):
        with await self.lock:
            self.count -= 1
            if self.count <= 0:
                self.event.set()

    async def wait(self):
        await self.event.wait()

  网上没找到好用的,自己实现了一个。

 

测试:

async def test(latch : CountDownLatch, i):
    # await asyncio.sleep(random.random() * 2)
    print(‘{} work complete‘.format(i))
    await latch.count_down()
    
async def main():
    try:
        for j in range(0, 10):
            print(‘turn start‘)            
            latch = CountDownLatch(20)
            for i in range(0, 20):
                asyncio.ensure_future(test(latch, i))
            await latch.wait()
            print("20 tasks complete")
            await asyncio.sleep(2)
    except Exception as e:
        print(e)
        
if __name__ == ‘__main__‘ :
    loop = asyncio.get_event_loop();
    loop.run_until_complete(asyncio.wait([main()]))    

  

以上是关于使用 ayncio 实现 CountDownLatch的主要内容,如果未能解决你的问题,请参考以下文章

和朱晔一起复习Java并发:锁(含锁性能测试)

C语言常见字符串库函数的使用与实现

数据结构 ---[链表 ] [使用链表实现栈 以及 队列 (Java代码实现)]

有啥理由使用自动实现的属性而不是手动实现的属性?

使用COOKIE实现登录 VS 使用SESSION实现登录

使用ffmpeg实现转码样例(代码实现)