AbstractReferenceCountedByteBuf() — netty Function Reference
Architecture documentation for the AbstractReferenceCountedByteBuf() function in AbstractReferenceCountedByteBufTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a3da2439_0a16_1aba_a8b2_4cdee5b7c453["AbstractReferenceCountedByteBuf()"] 51222db7_9ab7_4d1e_8f88_ed2f59e6b1ec["AbstractReferenceCountedByteBufTest"] a3da2439_0a16_1aba_a8b2_4cdee5b7c453 -->|defined in| 51222db7_9ab7_4d1e_8f88_ed2f59e6b1ec style a3da2439_0a16_1aba_a8b2_4cdee5b7c453 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/test/java/io/netty/buffer/AbstractReferenceCountedByteBufTest.java lines 114–357
private static AbstractReferenceCountedByteBuf newReferenceCounted() {
return new AbstractReferenceCountedByteBuf(Integer.MAX_VALUE) {
@Override
protected byte _getByte(int index) {
throw new UnsupportedOperationException();
}
@Override
protected short _getShort(int index) {
throw new UnsupportedOperationException();
}
@Override
protected short _getShortLE(int index) {
throw new UnsupportedOperationException();
}
@Override
protected int _getUnsignedMedium(int index) {
throw new UnsupportedOperationException();
}
@Override
protected int _getUnsignedMediumLE(int index) {
throw new UnsupportedOperationException();
}
@Override
protected int _getInt(int index) {
throw new UnsupportedOperationException();
}
@Override
protected int _getIntLE(int index) {
throw new UnsupportedOperationException();
}
@Override
protected long _getLong(int index) {
throw new UnsupportedOperationException();
}
@Override
protected long _getLongLE(int index) {
throw new UnsupportedOperationException();
}
@Override
protected void _setByte(int index, int value) {
throw new UnsupportedOperationException();
}
@Override
protected void _setShort(int index, int value) {
throw new UnsupportedOperationException();
}
@Override
protected void _setShortLE(int index, int value) {
throw new UnsupportedOperationException();
}
@Override
protected void _setMedium(int index, int value) {
throw new UnsupportedOperationException();
}
@Override
protected void _setMediumLE(int index, int value) {
throw new UnsupportedOperationException();
}
@Override
protected void _setInt(int index, int value) {
throw new UnsupportedOperationException();
}
@Override
protected void _setIntLE(int index, int value) {
throw new UnsupportedOperationException();
Domain
Subdomains
Source
Frequently Asked Questions
What does AbstractReferenceCountedByteBuf() do?
AbstractReferenceCountedByteBuf() is a function in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/AbstractReferenceCountedByteBufTest.java.
Where is AbstractReferenceCountedByteBuf() defined?
AbstractReferenceCountedByteBuf() is defined in buffer/src/test/java/io/netty/buffer/AbstractReferenceCountedByteBufTest.java at line 114.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free