Home / Function/ fireChannelRead() — netty Function Reference

fireChannelRead() — netty Function Reference

Architecture documentation for the fireChannelRead() function in InboundHttp2ToHttpAdapter.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 4

Entity Profile

Dependency Diagram

graph TD
  dd41a085_6ba9_3e5b_7096_37e5368a853b["fireChannelRead()"]
  aed86996_f518_c45d_5bdf_47241b8bdd57["InboundHttp2ToHttpAdapter"]
  dd41a085_6ba9_3e5b_7096_37e5368a853b -->|defined in| aed86996_f518_c45d_5bdf_47241b8bdd57
  f1d610a2_3c24_d241_27ce_92afa7c64f42["FullHttpMessage()"]
  f1d610a2_3c24_d241_27ce_92afa7c64f42 -->|calls| dd41a085_6ba9_3e5b_7096_37e5368a853b
  dba66dc8_e4ba_9648_2ce7_0781414afe89["processHeadersEnd()"]
  dba66dc8_e4ba_9648_2ce7_0781414afe89 -->|calls| dd41a085_6ba9_3e5b_7096_37e5368a853b
  705b432a_f86e_1860_a699_d7ea944f432f["onDataRead()"]
  705b432a_f86e_1860_a699_d7ea944f432f -->|calls| dd41a085_6ba9_3e5b_7096_37e5368a853b
  517bfb71_063e_1628_6eac_3e1ea271a2cf["onSettingsRead()"]
  517bfb71_063e_1628_6eac_3e1ea271a2cf -->|calls| dd41a085_6ba9_3e5b_7096_37e5368a853b
  662defdf_c364_32c0_c283_775e72f3676f["removeMessage()"]
  dd41a085_6ba9_3e5b_7096_37e5368a853b -->|calls| 662defdf_c364_32c0_c283_775e72f3676f
  style dd41a085_6ba9_3e5b_7096_37e5368a853b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/InboundHttp2ToHttpAdapter.java lines 127–132

    protected void fireChannelRead(ChannelHandlerContext ctx, FullHttpMessage msg, boolean release,
                                   Http2Stream stream) {
        removeMessage(stream, release);
        HttpUtil.setContentLength(msg, msg.content().readableBytes());
        ctx.fireChannelRead(msg);
    }

Domain

Subdomains

Frequently Asked Questions

What does fireChannelRead() do?
fireChannelRead() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/InboundHttp2ToHttpAdapter.java.
Where is fireChannelRead() defined?
fireChannelRead() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/InboundHttp2ToHttpAdapter.java at line 127.
What does fireChannelRead() call?
fireChannelRead() calls 1 function(s): removeMessage.
What calls fireChannelRead()?
fireChannelRead() is called by 4 function(s): FullHttpMessage, onDataRead, onSettingsRead, processHeadersEnd.

Analyze Your Own Codebase

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

Try Supermodel Free