EventLoopGroup() — netty Function Reference
Architecture documentation for the EventLoopGroup() function in IoUringSocketTestPermutation.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b57b7240_0800_7856_2e4a_fdb080e7be84["EventLoopGroup()"] b9d8589a_7c28_e55d_4254_c7b2d8ffa8b8["IoUringSocketTestPermutation"] b57b7240_0800_7856_2e4a_fdb080e7be84 -->|defined in| b9d8589a_7c28_e55d_4254_c7b2d8ffa8b8 style b57b7240_0800_7856_2e4a_fdb080e7be84 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java lines 68–76
private static EventLoopGroup newGroup(boolean incremental) {
if (!IoUring.isRegisterBufferRingIncSupported() && incremental) {
return null;
}
return new MultiThreadIoEventLoopGroup(
NUM_THREADS, new DefaultThreadFactory(incremental ?
"testsuite-io_uring-group-buffer-ring-incremental" : "testsuite-io_uring-group", true),
IoUringIoHandler.newFactory(buildConfig(incremental)));
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does EventLoopGroup() do?
EventLoopGroup() is a function in the netty codebase, defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java.
Where is EventLoopGroup() defined?
EventLoopGroup() is defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java at line 68.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free