rstStreamReadForUnknownStreamShouldBeIgnored() — netty Function Reference
Architecture documentation for the rstStreamReadForUnknownStreamShouldBeIgnored() function in DefaultHttp2ConnectionDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2fe25caa_03d8_79c2_e407_0df9ed3b6128["rstStreamReadForUnknownStreamShouldBeIgnored()"] 7c0b580c_3a1b_cdb3_bf02_2ffea3bbdffc["DefaultHttp2ConnectionDecoderTest"] 2fe25caa_03d8_79c2_e407_0df9ed3b6128 -->|defined in| 7c0b580c_3a1b_cdb3_bf02_2ffea3bbdffc style 2fe25caa_03d8_79c2_e407_0df9ed3b6128 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoderTest.java lines 816–822
@Test
public void rstStreamReadForUnknownStreamShouldBeIgnored() throws Exception {
when(connection.stream(STREAM_ID)).thenReturn(null);
decode().onRstStreamRead(ctx, STREAM_ID, PROTOCOL_ERROR.code());
verify(lifecycleManager, never()).closeStream(eq(stream), eq(future));
verify(listener, never()).onRstStreamRead(eq(ctx), anyInt(), anyLong());
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does rstStreamReadForUnknownStreamShouldBeIgnored() do?
rstStreamReadForUnknownStreamShouldBeIgnored() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoderTest.java.
Where is rstStreamReadForUnknownStreamShouldBeIgnored() defined?
rstStreamReadForUnknownStreamShouldBeIgnored() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoderTest.java at line 816.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free