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

Update Http2Pool javadoc #2589

Merged
merged 1 commit into from Nov 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -65,14 +65,15 @@
* The connection is removed from the pool when:
* <ul>
* <li>The connection is closed.</li>
* <li>GO_AWAY is received and there are no active streams.</li>
* <li>The eviction predicate evaluates to true and there are no active streams.</li>
* <li>When the client is in one of the two modes: 1) H2 and HTTP/1.1 or 2) H2C and HTTP/1.1,
* and the negotiated protocol is HTTP/1.1.</li>
* </ul>
* <p>
* The connection is filtered out when:
* <ul>
* <li>The connection's eviction predicate evaluates to true and there are active streams. In this case, the
* <li>The connection's eviction predicate evaluates to true or GO_AWAY is received, and there are active streams. In this case, the
* connection stays in the pool, but it is not used. Once there are no active streams, the connection is removed
* from the pool.</li>
* <li>The connection has reached its max active streams configuration. In this case, the connection stays
Expand Down