Home / Function/ createExternalMcPool() — netty Function Reference

createExternalMcPool() — netty Function Reference

Architecture documentation for the createExternalMcPool() function in Recycler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  ce3244a6_1286_60c2_dc87_1b0d59a6e5c1["createExternalMcPool()"]
  35ba43da_5a98_091e_3833_ccfc393fe9ff["LocalPool"]
  ce3244a6_1286_60c2_dc87_1b0d59a6e5c1 -->|defined in| 35ba43da_5a98_091e_3833_ccfc393fe9ff
  32f03d18_b521_34c0_4e3d_4eb52b3d02ca["LocalPool()"]
  32f03d18_b521_34c0_4e3d_4eb52b3d02ca -->|calls| ce3244a6_1286_60c2_dc87_1b0d59a6e5c1
  style ce3244a6_1286_60c2_dc87_1b0d59a6e5c1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/Recycler.java lines 530–538

        private static <H> MessagePassingQueue<H> createExternalMcPool(int maxCapacity) {
            if (maxCapacity == 0) {
                return null;
            }
            if (BLOCKING_POOL) {
                return new BlockingMessageQueue<>(maxCapacity);
            }
            return (MessagePassingQueue<H>) newFixedMpmcQueue(maxCapacity);
        }

Domain

Subdomains

Called By

Frequently Asked Questions

What does createExternalMcPool() do?
createExternalMcPool() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/Recycler.java.
Where is createExternalMcPool() defined?
createExternalMcPool() is defined in common/src/main/java/io/netty/util/Recycler.java at line 530.
What calls createExternalMcPool()?
createExternalMcPool() is called by 1 function(s): LocalPool.

Analyze Your Own Codebase

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

Try Supermodel Free