我有一个非常简单的聊天服务器客户端(带有websockets)
当我做以下事情时:
from websocket import create_connection
client_1 = create_connection("ws://xxx")
client_2 = create_connection("ws://xxx")
client_1.send('hello\n')
client_1.send('world\n')
client_2.recv() # hello\n
client_2.recv() # world\n
有没有办法获得所有回复?像:
client_1.send('hello\n')
client_1.send('world\n')
client_2.recvall() # hello\nworld\n
这是出于测试目的,我正在测试我的服务器,我需要为每个客户端收到所有收到的消息