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

Conform client/server connection handlers to h2 stream delegate #1875

Merged
merged 3 commits into from
May 22, 2024

Commits on May 1, 2024

  1. Conform client/server connection handlers to h2 stream delegate

    Motivation:
    
    The natural NIO API to use when dealing with HTTP/2 multiplexing doesn't
    emit user inbound events when streams are created and closed. Instead
    this is signalled via the `NIOHTTP2StreamDelegate`.
    
    Modifications:
    
    - Conform the `ClientConnectionHandler` and the
      `ServerConnectionManagementHandler` to `NIOHTTP2StreamDelegate`.
    - Update tests
    
    Result:
    
    `ClientConnectionHandler` and `ServerConnectionManagementHandler` can be
    used as stream delegates with NIO HTTP/2 is configured for async
    multiplexing.
    glbrntt committed May 1, 2024
    Configuration menu
    Copy the full SHA
    996c03b View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Configuration menu
    Copy the full SHA
    a22fb9b View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. Configuration menu
    Copy the full SHA
    c71dbd1 View commit details
    Browse the repository at this point in the history