Home / Function/ FlowControlledData() — netty Function Reference

FlowControlledData() — netty Function Reference

Architecture documentation for the FlowControlledData() function in DefaultHttp2ConnectionEncoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  192a7df9_e57e_16a9_360a_44ba8f82d3d9["FlowControlledData()"]
  3f967aaa_cd4e_4486_0912_7a9f57cfa847["FlowControlledData"]
  192a7df9_e57e_16a9_360a_44ba8f82d3d9 -->|defined in| 3f967aaa_cd4e_4486_0912_7a9f57cfa847
  f7c83e25_f1bc_4ff3_1eaa_ebd5521fad31["ChannelFuture()"]
  f7c83e25_f1bc_4ff3_1eaa_ebd5521fad31 -->|calls| 192a7df9_e57e_16a9_360a_44ba8f82d3d9
  style 192a7df9_e57e_16a9_360a_44ba8f82d3d9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder.java lines 444–450

        FlowControlledData(Http2Stream stream, ByteBuf buf, int padding, boolean endOfStream,
                                   ChannelPromise promise) {
            super(stream, padding, endOfStream, promise);
            queue = new CoalescingBufferQueue(promise.channel());
            queue.add(buf, promise);
            dataSize = queue.readableBytes();
        }

Domain

Subdomains

Called By

Frequently Asked Questions

What does FlowControlledData() do?
FlowControlledData() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder.java.
Where is FlowControlledData() defined?
FlowControlledData() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionEncoder.java at line 444.
What calls FlowControlledData()?
FlowControlledData() is called by 1 function(s): ChannelFuture.

Analyze Your Own Codebase

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

Try Supermodel Free