作成したサーバーに多くの Web ソケット接続を行うプログラムを作成しようとしています。
class WebSocketClient():
@asyncio.coroutine
def run(self):
print(self.client_id, 'Connecting')
ws = yield from aiohttp.ws_connect(self.url)
print(self.client_id, 'Connected')
print(self.client_id, 'Sending the message')
ws.send_str(self.make_new_message())
while not ws.closed:
msg = yield from ws.receive()
if msg.tp == aiohttp.MsgType.text:
print(self.client_id, 'Received the echo')
yield from ws.close()
break
print(self.client_id, 'Closed')
@asyncio.coroutine
def make_clients():
for client_id in range(args.clients):
yield from WebSocketClient(client_id, WS_CHANNEL_URL.format(client_id=client_id)).run()
event_loop.run_until_complete(make_clients())
問題は、すべてのクライアントが次々にジョブを実行することです。
0 Connecting
0 Connected
0 Sending the message
0 Received the echo
0 Closed
1 Connecting
1 Connected
1 Sending the message
1 Received the echo
1 Closed
...
を使用しようとしましasyncio.wait
たが、すべてのクライアントが一緒に起動します。それらを徐々に作成し、それぞれが作成されたらすぐにサーバーに接続したいと思います。同時に、新しいクライアントを作成し続けます。
これを達成するには、どのようなアプローチを適用する必要がありますか?