-
Notifications
You must be signed in to change notification settings - Fork 34
[rs] Add streams-quic example #978
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
[rs] Add streams-quic example #978
Conversation
b07a41d to
2535e9a
Compare
they seem to be identical other that the QUIC version having to abort accepts on shutdown, could you elaborate? |
Co-authored-by: Roman Volosatovs <[email protected]>
Sure, I think it might be around more general questions:
Thanks! |
In case of NATS.io there is a single connection to the NATS broker and "accepting" is done behind the scenes by This is all quite low-level and we should definitely introduce a higher-level abstraction with opinionated defaults for developers who don't necessarily require this high degree of control |
Got it - thanks for the explanation. Yes, that sounds like a good idea. Would be happy to help with that as I get more familiar with the internals. |
Implement
stream-quic-{client, server}based onstreams-nats-{client, server}andhello-quic-{client, server}.Should the handling of multiple invocation streams follow the approach in
hello-quic-serverorstream-nats-server?@rvolosatovs