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
Current httpbis::Client connects to only single server. Client creates a thread.
httpbis::Client
So if you need to connect to multiple servers, you need to create multiple clients and create multiple threads.
To solve this problem rust-http2 should either:
Client
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current
httpbis::Client
connects to only single server. Client creates a thread.So if you need to connect to multiple servers, you need to create multiple clients and create multiple threads.
To solve this problem rust-http2 should either:
Client
with external event loop (so user could create one event loop and create multiple clients attached to that event loop)The text was updated successfully, but these errors were encountered: