简体   繁体   English

关闭客户端

[英]Closing a client

There is the following code:有以下代码:

import asyncio
import aiohttp

aut_token = ("token")

tasks = []
iter_flag = False

class WAPI:

    async def receiver(WAPI_S):
        async for msg in WAPI_S:
            data = msg.json()
            raise aiohttp.ClientError #test

    async def heartbeating(WAPI_S):
        while iter_flag:
            await WAPI_S.send_json({
                            "op": 1,
                            "d": None
                        })
            
            await asyncio.sleep(42.5)

    async def event_manager():
        loop = asyncio.get_running_loop()
        try:
            async with aiohttp.ClientSession().ws_connect("url") as WAPI_S: 
                task_receive = loop.create_task(WAPI.receiver(WAPI_S)); task_heartbeating = loop.create_task(WAPI.heartbeating(WAPI_S))
                tasks.append(task_receive); tasks.append(task_heartbeating)
                await asyncio.gather(*tasks)
        except aiohttp.ClientError:
            global iter_flag
            iter_flag = False
            await asyncio.sleep(44)
            [task.cancel() for task in tasks]
            try:
                loop.close()
            except:
                loop.stop()
                
            
asyncio.run(WAPI.event_manager())

I want to correctly shutdown the client when the exception is raised.我想在引发异常时正确关闭客户端。 My implementation throws "RuntimeError: Event loop stopped before Future completed" exception while executing.我的实现在执行时抛出“RuntimeError:事件循环在未来完成之前停止”异常。 How to do it right?怎么做才对?

In method event_manager , the statement:在方法event_manager ,语句:

            async with aiohttp.ClientSession().ws_connect("url") as WAPI_S:

needs to be replaced with:需要替换为:

            async with aiohttp.ClientSession() as session:
                async with session.ws_connect("url") as WAPI_S:

Also, it is considered anti-Pythonic to use a list comprehension for its side effects.此外,使用列表理解来解决其副作用也被认为是反 Pythonic 的。 See Is it Pythonic to use list comprehensions for just side effects?请参阅将列表推导用于副作用是否是 Pythonic? So you really should replace:所以你真的应该替换:

            [task.cancel() for task in tasks]

with:和:

            for task in tasks:
                task.cancel()

Putting this all together:把这一切放在一起:

    async def event_manager():
        loop = asyncio.get_running_loop()
        try:
            async with aiohttp.ClientSession() as session:
                async with session.ws_connect("url") as WAPI_S: 
                    task_receive = loop.create_task(WAPI.receiver(WAPI_S)); task_heartbeating = loop.create_task(WAPI.heartbeating(WAPI_S))
                    tasks.append(task_receive); tasks.append(task_heartbeating)
                    await asyncio.gather(*tasks)
        except aiohttp.ClientError:
            global iter_flag
            iter_flag = False
            await asyncio.sleep(44)
            for task in tasks:
                task.cancel()
            try:
                loop.close()
            except:
                loop.stop()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM