AbstractEventLoop Class — netty Architecture
Architecture documentation for the AbstractEventLoop class in AbstractEventLoop.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 7fd941b0_d637_2c92_75e4_93302cc58a58["AbstractEventLoop"] 65fc8324_c3a2_0dab_edb2_7d22d856fbbb["AbstractEventLoop.java"] 7fd941b0_d637_2c92_75e4_93302cc58a58 -->|defined in| 65fc8324_c3a2_0dab_edb2_7d22d856fbbb b77507d0_25bb_be6f_c4bb_bd35c7baad58["AbstractEventLoop()"] 7fd941b0_d637_2c92_75e4_93302cc58a58 -->|method| b77507d0_25bb_be6f_c4bb_bd35c7baad58 6e8e4d77_00e0_3fb1_74c5_d8e45325b475["EventLoopGroup()"] 7fd941b0_d637_2c92_75e4_93302cc58a58 -->|method| 6e8e4d77_00e0_3fb1_74c5_d8e45325b475 f1cc35c6_725a_187e_4f22_9014c143ad70["EventLoop()"] 7fd941b0_d637_2c92_75e4_93302cc58a58 -->|method| f1cc35c6_725a_187e_4f22_9014c143ad70
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/AbstractEventLoop.java lines 24–41
public abstract class AbstractEventLoop extends AbstractEventExecutor implements EventLoop {
protected AbstractEventLoop() { }
protected AbstractEventLoop(EventLoopGroup parent) {
super(parent);
}
@Override
public EventLoopGroup parent() {
return (EventLoopGroup) super.parent();
}
@Override
public EventLoop next() {
return (EventLoop) super.next();
}
}
Source
Frequently Asked Questions
What is the AbstractEventLoop class?
AbstractEventLoop is a class in the netty codebase, defined in transport/src/main/java/io/netty/channel/AbstractEventLoop.java.
Where is AbstractEventLoop defined?
AbstractEventLoop is defined in transport/src/main/java/io/netty/channel/AbstractEventLoop.java at line 24.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free