We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
課題 pongのスレッドがブロッキングしており,pongが十分大きい個数を並列・並行に動作できていない
解決策の案 async/awaitを利用する
ping_pong_measurer_zenoh_python/src/pong.py
Line 36 in 91fe3b9
time.sleep(5)
asycio.sleep()
loop.run_in_executor(None, time.sleep, 5)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
課題
pongのスレッドがブロッキングしており,pongが十分大きい個数を並列・並行に動作できていない
解決策の案
async/awaitを利用する
ping_pong_measurer_zenoh_python/src/pong.py
Line 36 in 91fe3b9
の
time.sleep(5)
をasycio.sleep()
,loop.run_in_executor(None, time.sleep, 5)
などに変更するなどが案.(正しいかは未確認)The text was updated successfully, but these errors were encountered: