createMagazineGroupSizeClasses() — netty Function Reference
Architecture documentation for the createMagazineGroupSizeClasses() function in AdaptivePoolingAllocator.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b683fc3d_12e9_93d8_78a7_c37649de3767["createMagazineGroupSizeClasses()"] 9bc56cad_0c0c_4043_82ba_cb42dfea6004["AdaptivePoolingAllocator"] b683fc3d_12e9_93d8_78a7_c37649de3767 -->|defined in| 9bc56cad_0c0c_4043_82ba_cb42dfea6004 cc6da6d1_4687_b652_19f1_566a14b3c36b["AdaptivePoolingAllocator()"] cc6da6d1_4687_b652_19f1_566a14b3c36b -->|calls| b683fc3d_12e9_93d8_78a7_c37649de3767 02a76ead_33d8_cfe3_4978_8b372c856ad7["MagazineGroup()"] b683fc3d_12e9_93d8_78a7_c37649de3767 -->|calls| 02a76ead_33d8_cfe3_4978_8b372c856ad7 f78f916e_5152_0551_bb7a_8e8a86132979["SizeClassChunkManagementStrategy()"] b683fc3d_12e9_93d8_78a7_c37649de3767 -->|calls| f78f916e_5152_0551_bb7a_8e8a86132979 style b683fc3d_12e9_93d8_78a7_c37649de3767 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/AdaptivePoolingAllocator.java lines 218–227
private static MagazineGroup[] createMagazineGroupSizeClasses(
AdaptivePoolingAllocator allocator, boolean isThreadLocal) {
MagazineGroup[] groups = new MagazineGroup[SIZE_CLASSES.length];
for (int i = 0; i < SIZE_CLASSES.length; i++) {
int segmentSize = SIZE_CLASSES[i];
groups[i] = new MagazineGroup(allocator, allocator.chunkAllocator,
new SizeClassChunkManagementStrategy(segmentSize), isThreadLocal);
}
return groups;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does createMagazineGroupSizeClasses() do?
createMagazineGroupSizeClasses() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/AdaptivePoolingAllocator.java.
Where is createMagazineGroupSizeClasses() defined?
createMagazineGroupSizeClasses() is defined in buffer/src/main/java/io/netty/buffer/AdaptivePoolingAllocator.java at line 218.
What does createMagazineGroupSizeClasses() call?
createMagazineGroupSizeClasses() calls 2 function(s): MagazineGroup, SizeClassChunkManagementStrategy.
What calls createMagazineGroupSizeClasses()?
createMagazineGroupSizeClasses() is called by 1 function(s): AdaptivePoolingAllocator.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free