AbstractAdaptiveByteBufTest Class — netty Architecture
Architecture documentation for the AbstractAdaptiveByteBufTest class in AbstractAdaptiveByteBufTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 507f7780_cc72_6c4e_046a_41c8b31276fc["AbstractAdaptiveByteBufTest"] 89b57f5e_a3fa_8d4e_2dcc_5fe0e96b34b8["AbstractAdaptiveByteBufTest.java"] 507f7780_cc72_6c4e_046a_41c8b31276fc -->|defined in| 89b57f5e_a3fa_8d4e_2dcc_5fe0e96b34b8 65cb38e5_9adc_449c_c2b0_20574a8e99f8["ByteBuf()"] 507f7780_cc72_6c4e_046a_41c8b31276fc -->|method| 65cb38e5_9adc_449c_c2b0_20574a8e99f8 c2f53194_d64c_a69d_5e46_972a96f56349["testMaxFastWritableBytes()"] 507f7780_cc72_6c4e_046a_41c8b31276fc -->|method| c2f53194_d64c_a69d_5e46_972a96f56349 4544dbb3_c410_2886_382f_52dce83f32d4["testEnsureWritableDoesntGrowTooMuch()"] 507f7780_cc72_6c4e_046a_41c8b31276fc -->|method| 4544dbb3_c410_2886_382f_52dce83f32d4
Relationship Graph
Source Code
buffer/src/test/java/io/netty/buffer/AbstractAdaptiveByteBufTest.java lines 21–42
public abstract class AbstractAdaptiveByteBufTest extends AbstractPooledByteBufTest {
private final AdaptiveByteBufAllocator allocator = new AdaptiveByteBufAllocator();
@Override
protected final ByteBuf alloc(int length, int maxCapacity) {
return alloc(allocator, length, maxCapacity);
}
protected abstract ByteBuf alloc(AdaptiveByteBufAllocator allocator, int length, int maxCapacity);
@Disabled("Assumes the ByteBuf can be cast to PooledByteBuf")
@Test
@Override
public void testMaxFastWritableBytes() {
}
@Disabled("Assumes the ByteBuf can be cast to PooledByteBuf")
@Test
@Override
public void testEnsureWritableDoesntGrowTooMuch() {
}
}
Source
Frequently Asked Questions
What is the AbstractAdaptiveByteBufTest class?
AbstractAdaptiveByteBufTest is a class in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/AbstractAdaptiveByteBufTest.java.
Where is AbstractAdaptiveByteBufTest defined?
AbstractAdaptiveByteBufTest is defined in buffer/src/test/java/io/netty/buffer/AbstractAdaptiveByteBufTest.java at line 21.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free