gpt4 book ai didi

python - websocket-client 的 send() 尝试了多少次?

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:24 28 4
gpt4 key购买 nike

我使用Python包websocket-client处理一些客户端-服务器讨论。

假设我执行以下操作:

import websocket
MAX_TIMEOUT = 1 * 60 # Maximum time to wait to establish the connection to the server.
ws = websocket.create_connection("ws://128.52.195.211:8080/websocket")
ws.settimeout(MAX_TIMEOUT)
ws.send("Hello, World!")

ws.send() 会尝试多少次来尝试将消息发送到服务器?只有1个?

最佳答案

如果你看library source code ,它清楚地表明没有实现重试。

ws.send 从负载中创建帧( block ),然后在 ws.send_frame 中将每个帧一一发送

关于python - websocket-client 的 send() 尝试了多少次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32643610/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com