Home / Function/ addChannelToReadCompletePendingQueue() — netty Function Reference

addChannelToReadCompletePendingQueue() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  148e0a25_2d76_92ef_12e4_96137f62e6e4["addChannelToReadCompletePendingQueue()"]
  7156b337_296c_772b_1b97_916c27cb8378["Http2MultiplexHandlerStreamChannel"]
  148e0a25_2d76_92ef_12e4_96137f62e6e4 -->|defined in| 7156b337_296c_772b_1b97_916c27cb8378
  ecce0b9e_22b1_8b99_9cfd_5774c033087a["processPendingReadCompleteQueue()"]
  148e0a25_2d76_92ef_12e4_96137f62e6e4 -->|calls| ecce0b9e_22b1_8b99_9cfd_5774c033087a
  style 148e0a25_2d76_92ef_12e4_96137f62e6e4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexHandler.java lines 394–401

        @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/Http2MultiplexHandler.java.
Where is addChannelToReadCompletePendingQueue() defined?
addChannelToReadCompletePendingQueue() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexHandler.java at line 394.
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