onHttpServerUpgradeWithoutHandlerAdded() — netty Function Reference
Architecture documentation for the onHttpServerUpgradeWithoutHandlerAdded() function in Http2ConnectionHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c5a9f62e_825c_b772_69fc_0251a0e8ce83["onHttpServerUpgradeWithoutHandlerAdded()"] e8b32c7d_fa9d_422b_0744_82047ac00ea5["Http2ConnectionHandlerTest"] c5a9f62e_825c_b772_69fc_0251a0e8ce83 -->|defined in| e8b32c7d_fa9d_422b_0744_82047ac00ea5 style c5a9f62e_825c_b772_69fc_0251a0e8ce83 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2ConnectionHandlerTest.java lines 245–255
@Test
public void onHttpServerUpgradeWithoutHandlerAdded() throws Exception {
handler = new Http2ConnectionHandlerBuilder().frameListener(new Http2FrameAdapter()).server(true).build();
Http2Exception e = assertThrows(Http2Exception.class, new Executable() {
@Override
public void execute() throws Throwable {
handler.onHttpServerUpgrade(new Http2Settings());
}
});
assertEquals(Http2Error.INTERNAL_ERROR, e.error());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does onHttpServerUpgradeWithoutHandlerAdded() do?
onHttpServerUpgradeWithoutHandlerAdded() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2ConnectionHandlerTest.java.
Where is onHttpServerUpgradeWithoutHandlerAdded() defined?
onHttpServerUpgradeWithoutHandlerAdded() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2ConnectionHandlerTest.java at line 245.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free