Home / Class/ DelayedEventLoopGroup Class — netty Architecture

DelayedEventLoopGroup Class — netty Architecture

Architecture documentation for the DelayedEventLoopGroup class in BootstrapTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  c31025a1_f8fc_38fa_b1fb_6b1760d54311["DelayedEventLoopGroup"]
  e9ee9a00_988f_9508_1e47_b48bd2b962d3["BootstrapTest.java"]
  c31025a1_f8fc_38fa_b1fb_6b1760d54311 -->|defined in| e9ee9a00_988f_9508_1e47_b48bd2b962d3
  bbbca2c4_9447_2e94_d2f3_0160151d3fae["ChannelFuture()"]
  c31025a1_f8fc_38fa_b1fb_6b1760d54311 -->|method| bbbca2c4_9447_2e94_d2f3_0160151d3fae

Relationship Graph

Source Code

transport/src/test/java/io/netty/bootstrap/BootstrapTest.java lines 516–528

    private static final class DelayedEventLoopGroup extends DefaultEventLoop {
        @Override
        public ChannelFuture register(final Channel channel, final ChannelPromise promise) {
            // Delay registration
            execute(new Runnable() {
                @Override
                public void run() {
                    DelayedEventLoopGroup.super.register(channel, promise);
                }
            });
            return promise;
        }
    }

Frequently Asked Questions

What is the DelayedEventLoopGroup class?
DelayedEventLoopGroup is a class in the netty codebase, defined in transport/src/test/java/io/netty/bootstrap/BootstrapTest.java.
Where is DelayedEventLoopGroup defined?
DelayedEventLoopGroup is defined in transport/src/test/java/io/netty/bootstrap/BootstrapTest.java at line 516.

Analyze Your Own Codebase

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

Try Supermodel Free