Home / Function/ addChannelToReadCompletePendingQueue() — netty Function Reference

addChannelToReadCompletePendingQueue() — netty Function Reference

Architecture documentation for the addChannelToReadCompletePendingQueue() function in Http2MultiplexCodec.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  ae92dbd7_b469_ae27_b690_b6d66f2f52e4["addChannelToReadCompletePendingQueue()"]
  121670e4_25cf_704f_0b1e_212c3d247de1["Http2MultiplexCodecStreamChannel"]
  ae92dbd7_b469_ae27_b690_b6d66f2f52e4 -->|defined in| 121670e4_25cf_704f_0b1e_212c3d247de1
  a4b14126_9c21_7172_e4e0_4c793e70994c["processPendingReadCompleteQueue()"]
  ae92dbd7_b469_ae27_b690_b6d66f2f52e4 -->|calls| a4b14126_9c21_7172_e4e0_4c793e70994c
  style ae92dbd7_b469_ae27_b690_b6d66f2f52e4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexCodec.java lines 318–325

        @Override
        protected void addChannelToReadCompletePendingQueue() {
            // If there is no space left in the queue, just keep on processing everything that is already
            // stored there and try again.
            while (!readCompletePendingQueue.offer(this)) {
                processPendingReadCompleteQueue();
            }
        }

Domain

Subdomains

Frequently Asked Questions

What does addChannelToReadCompletePendingQueue() do?
addChannelToReadCompletePendingQueue() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexCodec.java.
Where is addChannelToReadCompletePendingQueue() defined?
addChannelToReadCompletePendingQueue() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexCodec.java at line 318.
What does addChannelToReadCompletePendingQueue() call?
addChannelToReadCompletePendingQueue() calls 1 function(s): processPendingReadCompleteQueue.

Analyze Your Own Codebase

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

Try Supermodel Free