Home / Function/ readCompleted() — netty Function Reference

readCompleted() — netty Function Reference

Architecture documentation for the readCompleted() function in Http3FrameCodec.java from the netty codebase.

Function java Buffer Allocators calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  84c0aa73_08b8_9f37_baf7_cad995c3c8e3["readCompleted()"]
  2248914c_cfca_0e01_f610_307d55182207["ReadResumptionListener"]
  84c0aa73_08b8_9f37_baf7_cad995c3c8e3 -->|defined in| 2248914c_cfca_0e01_f610_307d55182207
  4432f04f_81b6_0995_2792_9dc615b00b96["channelReadComplete()"]
  4432f04f_81b6_0995_2792_9dc615b00b96 -->|calls| 84c0aa73_08b8_9f37_baf7_cad995c3c8e3
  d58a8d53_dc7f_23c0_786a_622145d546c1["hasState()"]
  84c0aa73_08b8_9f37_baf7_cad995c3c8e3 -->|calls| d58a8d53_dc7f_23c0_786a_622145d546c1
  6e1a101a_f7ee_1213_970e_5639c659e0c2["setState()"]
  84c0aa73_08b8_9f37_baf7_cad995c3c8e3 -->|calls| 6e1a101a_f7ee_1213_970e_5639c659e0c2
  style 84c0aa73_08b8_9f37_baf7_cad995c3c8e3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/Http3FrameCodec.java lines 676–682

        boolean readCompleted() {
            if (hasState(STATE_SUSPENDED)) {
                setState(STATE_READ_COMPLETE_PENDING);
                return false;
            }
            return true;
        }

Domain

Subdomains

Frequently Asked Questions

What does readCompleted() do?
readCompleted() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3FrameCodec.java.
Where is readCompleted() defined?
readCompleted() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3FrameCodec.java at line 676.
What does readCompleted() call?
readCompleted() calls 2 function(s): hasState, setState.
What calls readCompleted()?
readCompleted() is called by 1 function(s): channelReadComplete.

Analyze Your Own Codebase

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

Try Supermodel Free