invalidContinueLength() — netty Function Reference
Architecture documentation for the invalidContinueLength() function in HttpObjectAggregatorTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 87f794d5_360c_b5c8_d6c0_31d5c0631517["invalidContinueLength()"] 32ca569a_2b67_1114_bbc8_cbf703c91b95["HttpObjectAggregatorTest"] 87f794d5_360c_b5c8_d6c0_31d5c0631517 -->|defined in| 32ca569a_2b67_1114_bbc8_cbf703c91b95 style 87f794d5_360c_b5c8_d6c0_31d5c0631517 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/HttpObjectAggregatorTest.java lines 761–770
@Test
public void invalidContinueLength() {
EmbeddedChannel channel = new EmbeddedChannel(new HttpServerCodec(), new HttpObjectAggregator(1024));
channel.writeInbound(Unpooled.copiedBuffer("POST / HTTP/1.1\r\n" +
"Expect: 100-continue\r\n" +
"Content-Length:\r\n" +
"\r\n\r\n", CharsetUtil.US_ASCII));
assertTrue(channel.finishAndReleaseAll());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does invalidContinueLength() do?
invalidContinueLength() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpObjectAggregatorTest.java.
Where is invalidContinueLength() defined?
invalidContinueLength() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpObjectAggregatorTest.java at line 761.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free