Home / Class/ TestConfig Class — netty Architecture

TestConfig Class — netty Architecture

Architecture documentation for the TestConfig class in TestChannel.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  1f13f660_50bb_d82f_2664_2a6fd19695e1["TestConfig"]
  7bca1f65_e9f0_6a05_814c_a8f10afc943e["TestChannel.java"]
  1f13f660_50bb_d82f_2664_2a6fd19695e1 -->|defined in| 7bca1f65_e9f0_6a05_814c_a8f10afc943e
  796f2550_cc8d_ec52_1381_653fc110065e["TestConfig()"]
  1f13f660_50bb_d82f_2664_2a6fd19695e1 -->|method| 796f2550_cc8d_ec52_1381_653fc110065e
  2b7094e2_84b1_a31b_fd05_6c69a9c05c3d["setOption()"]
  1f13f660_50bb_d82f_2664_2a6fd19695e1 -->|method| 2b7094e2_84b1_a31b_fd05_6c69a9c05c3d

Relationship Graph

Source Code

transport/src/test/java/io/netty/bootstrap/TestChannel.java lines 114–123

    private static final class TestConfig extends DefaultChannelConfig {
        TestConfig(Channel channel) {
            super(channel);
        }

        @Override
        public <T> boolean setOption(ChannelOption<T> option, T value) {
            throw new UnsupportedOperationException("Unsupported channel option: " + option);
        }
    }

Frequently Asked Questions

What is the TestConfig class?
TestConfig is a class in the netty codebase, defined in transport/src/test/java/io/netty/bootstrap/TestChannel.java.
Where is TestConfig defined?
TestConfig is defined in transport/src/test/java/io/netty/bootstrap/TestChannel.java at line 114.

Analyze Your Own Codebase

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

Try Supermodel Free