clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception() — netty Function Reference
Architecture documentation for the clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception() function in Http2MultiplexClientUpgradeTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cc66d897_65f5_07ed_a181_c3df1a30a909["clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception()"] e84355c5_9733_4b97_b606_02dd7b61b869["Http2MultiplexClientUpgradeTest"] cc66d897_65f5_07ed_a181_c3df1a30a909 -->|defined in| e84355c5_9733_4b97_b606_02dd7b61b869 style cc66d897_65f5_07ed_a181_c3df1a30a909 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexClientUpgradeTest.java lines 80–95
@Test
public void clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception() throws Http2Exception {
final C codec = newCodec(null);
final EmbeddedChannel ch = new EmbeddedChannel(codec, newMultiplexer(null));
assertThrows(Http2Exception.class, new Executable() {
@Override
public void execute() throws Http2Exception {
try {
codec.onHttpClientUpgrade();
} finally {
ch.finishAndReleaseAll();
}
}
});
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception() do?
clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexClientUpgradeTest.java.
Where is clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception() defined?
clientUpgradeWithoutUpgradeHandlerThrowsHttp2Exception() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexClientUpgradeTest.java at line 80.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free