Home / Function/ Bootstrap() — netty Function Reference

Bootstrap() — netty Function Reference

Architecture documentation for the Bootstrap() function in BaseChannelTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  305d6579_e558_2f88_ed6d_c3b7d8072056["Bootstrap()"]
  0c01051c_ac6b_ebe9_9da3_cd5809a96ff6["BaseChannelTest"]
  305d6579_e558_2f88_ed6d_c3b7d8072056 -->|defined in| 0c01051c_ac6b_ebe9_9da3_cd5809a96ff6
  style 305d6579_e558_2f88_ed6d_c3b7d8072056 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/test/java/io/netty/channel/BaseChannelTest.java lines 50–59

    Bootstrap getLocalClientBootstrap() {
        EventLoopGroup clientGroup = new MultiThreadIoEventLoopGroup(LocalIoHandler.newFactory());
        Bootstrap cb = new Bootstrap();
        cb.channel(LocalChannel.class);
        cb.group(clientGroup);

        cb.handler(loggingHandler);

        return cb;
    }

Domain

Subdomains

Frequently Asked Questions

What does Bootstrap() do?
Bootstrap() is a function in the netty codebase, defined in transport/src/test/java/io/netty/channel/BaseChannelTest.java.
Where is Bootstrap() defined?
Bootstrap() is defined in transport/src/test/java/io/netty/channel/BaseChannelTest.java at line 50.

Analyze Your Own Codebase

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

Try Supermodel Free