-
Notifications
You must be signed in to change notification settings - Fork 9
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
P2P, HTTP, SHiP: Change fc::create_listener to use strand #819
Comments
|
Actually, because of #816 (comment) I'm not sure |
Currently
fc::create_listener
creates sockets with the provided executor. For our use cases, it would be nice iffc::create_listener
would create a strand for each socket. The users offc::create_listener
could then retrieve the strand from thesocket.get_executor()
for use.Something like:
438ae62
Then:
socket.get_executor()
instead of making a new strand.net_plugin
to use the socket strand instead of creating a different one.The text was updated successfully, but these errors were encountered: