Home / Function/ recvBufAllocHandle() — netty Function Reference

recvBufAllocHandle() — netty Function Reference

Architecture documentation for the recvBufAllocHandle() function in AbstractHttp2StreamChannel.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  061edcf4_92d7_3247_2f08_9c8c996847ae["recvBufAllocHandle()"]
  2656dcfe_5cdb_7c7d_bc25_312393fe2e05["Http2ChannelUnsafe"]
  061edcf4_92d7_3247_2f08_9c8c996847ae -->|defined in| 2656dcfe_5cdb_7c7d_bc25_312393fe2e05
  733793a3_8d1b_0b74_1c34_71e2c7d99a3e["fireChildRead()"]
  733793a3_8d1b_0b74_1c34_71e2c7d99a3e -->|calls| 061edcf4_92d7_3247_2f08_9c8c996847ae
  3086b5f9_e8c1_0eb5_a6a4_4ba003f3538e["fireChildReadComplete()"]
  3086b5f9_e8c1_0eb5_a6a4_4ba003f3538e -->|calls| 061edcf4_92d7_3247_2f08_9c8c996847ae
  8c7ec287_e512_c36c_39d6_33286068a273["doBeginRead()"]
  8c7ec287_e512_c36c_39d6_33286068a273 -->|calls| 061edcf4_92d7_3247_2f08_9c8c996847ae
  style 061edcf4_92d7_3247_2f08_9c8c996847ae fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/AbstractHttp2StreamChannel.java lines 651–658

        @Override
        public RecvByteBufAllocator.Handle recvBufAllocHandle() {
            if (recvHandle == null) {
                recvHandle = config().getRecvByteBufAllocator().newHandle();
                recvHandle.reset(config());
            }
            return recvHandle;
        }

Domain

Subdomains

Frequently Asked Questions

What does recvBufAllocHandle() do?
recvBufAllocHandle() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/AbstractHttp2StreamChannel.java.
Where is recvBufAllocHandle() defined?
recvBufAllocHandle() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/AbstractHttp2StreamChannel.java at line 651.
What calls recvBufAllocHandle()?
recvBufAllocHandle() is called by 3 function(s): doBeginRead, fireChildRead, fireChildReadComplete.

Analyze Your Own Codebase

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

Try Supermodel Free