Home / Function/ verifyAssociatedWithAStream() — netty Function Reference

verifyAssociatedWithAStream() — netty Function Reference

Architecture documentation for the verifyAssociatedWithAStream() function in DefaultHttp2FrameReader.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  d7ebd2c7_76fa_2887_bee9_3a9200630c77["verifyAssociatedWithAStream()"]
  3768d640_58c2_34e7_3d69_a4b578e0d11a["DefaultHttp2FrameReader"]
  d7ebd2c7_76fa_2887_bee9_3a9200630c77 -->|defined in| 3768d640_58c2_34e7_3d69_a4b578e0d11a
  ff0a6525_ffe7_173c_fcc2_b84f2787a291["verifyDataFrame()"]
  ff0a6525_ffe7_173c_fcc2_b84f2787a291 -->|calls| d7ebd2c7_76fa_2887_bee9_3a9200630c77
  c3b18a68_fb1e_a250_383c_d5326174d526["verifyHeadersFrame()"]
  c3b18a68_fb1e_a250_383c_d5326174d526 -->|calls| d7ebd2c7_76fa_2887_bee9_3a9200630c77
  dec8499c_923b_6a23_aa87_bc307fb44f03["verifyPriorityFrame()"]
  dec8499c_923b_6a23_aa87_bc307fb44f03 -->|calls| d7ebd2c7_76fa_2887_bee9_3a9200630c77
  f085bf49_53e5_8456_5afc_83588bf5b3fc["verifyRstStreamFrame()"]
  f085bf49_53e5_8456_5afc_83588bf5b3fc -->|calls| d7ebd2c7_76fa_2887_bee9_3a9200630c77
  4cfc7da1_9258_0eaa_b413_78833c2d020b["verifyContinuationFrame()"]
  4cfc7da1_9258_0eaa_b413_78833c2d020b -->|calls| d7ebd2c7_76fa_2887_bee9_3a9200630c77
  style d7ebd2c7_76fa_2887_bee9_3a9200630c77 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java lines 763–767

    private void verifyAssociatedWithAStream() throws Http2Exception {
        if (streamId == 0) {
            throw connectionError(PROTOCOL_ERROR, "Frame of type %s must be associated with a stream.", frameType);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does verifyAssociatedWithAStream() do?
verifyAssociatedWithAStream() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java.
Where is verifyAssociatedWithAStream() defined?
verifyAssociatedWithAStream() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java at line 763.
What calls verifyAssociatedWithAStream()?
verifyAssociatedWithAStream() is called by 5 function(s): verifyContinuationFrame, verifyDataFrame, verifyHeadersFrame, verifyPriorityFrame, verifyRstStreamFrame.

Analyze Your Own Codebase

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

Try Supermodel Free