Home / Function/ assertGoAway() — netty Function Reference

assertGoAway() — netty Function Reference

Architecture documentation for the assertGoAway() function in SpdySessionHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  8e718148_fcdf_bd12_c452_390317a3ce70["assertGoAway()"]
  8cf70e1a_42ea_1993_5d10_4e8bc2411532["SpdySessionHandlerTest"]
  8e718148_fcdf_bd12_c452_390317a3ce70 -->|defined in| 8cf70e1a_42ea_1993_5d10_4e8bc2411532
  fc0303da_b005_411c_9ecc_10715887fee7["testSpdySessionHandlerGoAway()"]
  fc0303da_b005_411c_9ecc_10715887fee7 -->|calls| 8e718148_fcdf_bd12_c452_390317a3ce70
  style 8e718148_fcdf_bd12_c452_390317a3ce70 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/spdy/SpdySessionHandlerTest.java lines 74–79

    private static void assertGoAway(Object msg, int lastGoodStreamId) {
        assertNotNull(msg);
        assertTrue(msg instanceof SpdyGoAwayFrame);
        SpdyGoAwayFrame spdyGoAwayFrame = (SpdyGoAwayFrame) msg;
        assertEquals(lastGoodStreamId, spdyGoAwayFrame.lastGoodStreamId());
    }

Domain

Subdomains

Frequently Asked Questions

What does assertGoAway() do?
assertGoAway() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/spdy/SpdySessionHandlerTest.java.
Where is assertGoAway() defined?
assertGoAway() is defined in codec-http/src/test/java/io/netty/handler/codec/spdy/SpdySessionHandlerTest.java at line 74.
What calls assertGoAway()?
assertGoAway() is called by 1 function(s): testSpdySessionHandlerGoAway.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free