Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

websocketsでのマルチキャストの方法を再検討する #141

Open
otariidae opened this issue Oct 16, 2022 · 2 comments · May be fixed by #266
Open

websocketsでのマルチキャストの方法を再検討する #141

otariidae opened this issue Oct 16, 2022 · 2 comments · May be fixed by #266

Comments

@otariidae
Copy link

otariidae commented Oct 16, 2022

趣旨:websockets.broadcast 使えば良くね?

確かに a への代入は要らないと思います。

さらに言うとすべてのコルーチンの終了を待つには for 文ではなく次のように asyncio.gather の方が良いと思います。

asyncio.gather(*promises, return_exceptions=True)

さらに言うと promises は次のように複数の接続に send する目的で使われていますが、それなら send ではなくwebsockets.broadcast の方が良い気がします。

for connection in room["connections"]:
if connection is websocket:
continue
print("send")
promise = connection.send(
json.dumps(
{
"msg_type": "connect_receiver",
"room_id": room_id,
"skyway_room_id": room["skyway_room_id"],
"peer_id": room["peer_id"],
}
)
)

こうなると変更範囲がこのPRのnitsにしては大きすぎると思うのでissueを立てて別PRでやることにします。

Originally posted by @otariidae in #140 (comment)

@otariidae
Copy link
Author

otariidae commented Nov 13, 2022

@csenet
WebRTCの配信方法を変更するからmulticasterは要らなくなる、みたいな話が確かあったかと思うのですが廃止することに決まったのでしょうか?

@csenet
Copy link
Member

csenet commented Nov 15, 2022

@otariidae
WebSocketに関しては、1つのroomで実装するためmulticasterは必要なさそうです

This was referenced Nov 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants