newTaskQueue0() — netty Function Reference
Architecture documentation for the newTaskQueue0() function in SingleThreadIoEventLoop.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 03416d18_0dff_bf0c_d49a_a4fd68c319a2["newTaskQueue0()"] b5a24862_948e_3d05_bb70_270a6c4842a9["SingleThreadIoEventLoop"] 03416d18_0dff_bf0c_d49a_a4fd68c319a2 -->|defined in| b5a24862_948e_3d05_bb70_270a6c4842a9 fd1f8fd9_cd59_d1e7_478b_1c8f91595bd0["newTaskQueue()"] fd1f8fd9_cd59_d1e7_478b_1c8f91595bd0 -->|calls| 03416d18_0dff_bf0c_d49a_a4fd68c319a2 style 03416d18_0dff_bf0c_d49a_a4fd68c319a2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/SingleThreadIoEventLoop.java lines 289–293
protected static Queue<Runnable> newTaskQueue0(int maxPendingTasks) {
// This event loop never calls takeTask()
return maxPendingTasks == Integer.MAX_VALUE ? PlatformDependent.<Runnable>newMpscQueue()
: PlatformDependent.<Runnable>newMpscQueue(maxPendingTasks);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does newTaskQueue0() do?
newTaskQueue0() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/SingleThreadIoEventLoop.java.
Where is newTaskQueue0() defined?
newTaskQueue0() is defined in transport/src/main/java/io/netty/channel/SingleThreadIoEventLoop.java at line 289.
What calls newTaskQueue0()?
newTaskQueue0() is called by 1 function(s): newTaskQueue.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free