Home / Class/ InnerFixedChannelPool Class — netty Architecture

InnerFixedChannelPool Class — netty Architecture

Architecture documentation for the InnerFixedChannelPool class in FixedChannelPoolTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  8d20de06_0ffa_e2fc_126c_ad59e421955b["InnerFixedChannelPool"]
  c0a64ccf_3c6e_7ec5_4abb_4a32cf1ed47c["FixedChannelPoolTest.java"]
  8d20de06_0ffa_e2fc_126c_ad59e421955b -->|defined in| c0a64ccf_3c6e_7ec5_4abb_4a32cf1ed47c
  2caaef8c_d64c_2a83_bfab_fbaf66b32ffa["InnerFixedChannelPool()"]
  8d20de06_0ffa_e2fc_126c_ad59e421955b -->|method| 2caaef8c_d64c_2a83_bfab_fbaf66b32ffa
  260acbe3_81b0_8299_d5e8_84d11cc869db["Channel()"]
  8d20de06_0ffa_e2fc_126c_ad59e421955b -->|method| 260acbe3_81b0_8299_d5e8_84d11cc869db

Relationship Graph

Source Code

transport/src/test/java/io/netty/channel/pool/FixedChannelPoolTest.java lines 447–465

    private static final class InnerFixedChannelPool extends FixedChannelPool {

        InnerFixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck,
                                     AcquireTimeoutAction action, long acquireTimeoutMillis, int maxConnections,
                                     int maxPendingAcquires, boolean releaseHealthCheck) {
            super(bootstrap, handler, healthCheck, action, acquireTimeoutMillis, maxConnections, maxPendingAcquires,
                    releaseHealthCheck);
        }

        /**
         * The acquire always do a health check.
         * Only for testing purpose.
         *
         * @return channel
         */
        public Channel pollChannel() {
            return super.pollChannel();
        }
    }

Frequently Asked Questions

What is the InnerFixedChannelPool class?
InnerFixedChannelPool is a class in the netty codebase, defined in transport/src/test/java/io/netty/channel/pool/FixedChannelPoolTest.java.
Where is InnerFixedChannelPool defined?
InnerFixedChannelPool is defined in transport/src/test/java/io/netty/channel/pool/FixedChannelPoolTest.java at line 447.

Analyze Your Own Codebase

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

Try Supermodel Free