Uses of Class
io.netty.buffer.AbstractByteBuf
-
Packages that use AbstractByteBuf Package Description io.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message. -
-
Uses of AbstractByteBuf in io.netty.buffer
Subclasses of AbstractByteBuf in io.netty.buffer Modifier and Type Class Description class
AbstractDerivedByteBuf
Deprecated.Do not use.(package private) class
AbstractPooledDerivedByteBuf
Abstract base class for derivedByteBuf
implementations.private static class
AbstractPooledDerivedByteBuf.PooledNonRetainedDuplicateByteBuf
private static class
AbstractPooledDerivedByteBuf.PooledNonRetainedSlicedByteBuf
class
AbstractReferenceCountedByteBuf
Abstract base class forByteBuf
implementations that count references.(package private) class
AbstractUnpooledSlicedByteBuf
(package private) class
AdvancedLeakAwareCompositeByteBuf
(package private) static class
ByteBufUtil.ThreadLocalDirectByteBuf
(package private) static class
ByteBufUtil.ThreadLocalUnsafeDirectByteBuf
class
CompositeByteBuf
A virtual buffer which shows multiple buffers as a single merged buffer.class
DuplicatedByteBuf
Deprecated.Do not use.(package private) class
FixedCompositeByteBuf
(package private) class
PooledByteBuf<T>
(package private) class
PooledDirectByteBuf
(package private) class
PooledDuplicatedByteBuf
(package private) class
PooledHeapByteBuf
(package private) class
PooledSlicedByteBuf
(package private) class
PooledUnsafeDirectByteBuf
(package private) class
PooledUnsafeHeapByteBuf
class
ReadOnlyByteBuf
Deprecated.Do not use.(package private) class
ReadOnlyByteBufferBuf
Read-only ByteBuf which wraps a read-only ByteBuffer.(package private) class
ReadOnlyUnsafeDirectByteBuf
Read-only ByteBuf which wraps a read-only direct ByteBuffer and use unsafe for best performance.(package private) class
SimpleLeakAwareCompositeByteBuf
class
SlicedByteBuf
Deprecated.Do not use.private static class
UnpooledByteBufAllocator.InstrumentedUnpooledDirectByteBuf
private static class
UnpooledByteBufAllocator.InstrumentedUnpooledHeapByteBuf
private static class
UnpooledByteBufAllocator.InstrumentedUnpooledUnsafeDirectByteBuf
private static class
UnpooledByteBufAllocator.InstrumentedUnpooledUnsafeHeapByteBuf
private static class
UnpooledByteBufAllocator.InstrumentedUnpooledUnsafeNoCleanerDirectByteBuf
class
UnpooledDirectByteBuf
A NIOByteBuffer
based buffer.(package private) class
UnpooledDuplicatedByteBuf
DuplicatedByteBuf
implementation that can do optimizations because it knows the duplicated buffer is of typeAbstractByteBuf
.class
UnpooledHeapByteBuf
Big endian Java heap buffer implementation.(package private) class
UnpooledSlicedByteBuf
A specialAbstractUnpooledSlicedByteBuf
that can make optimizations because it knows the sliced buffer is of typeAbstractByteBuf
.class
UnpooledUnsafeDirectByteBuf
A NIOByteBuffer
based buffer.class
UnpooledUnsafeHeapByteBuf
Big endian Java heap buffer implementation.(package private) class
UnpooledUnsafeNoCleanerDirectByteBuf
(package private) class
WrappedCompositeByteBuf
(package private) class
WrappedUnpooledUnsafeDirectByteBuf
Fields in io.netty.buffer declared as AbstractByteBuf Modifier and Type Field Description private AbstractByteBuf
AbstractPooledDerivedByteBuf. rootParent
private AbstractByteBuf
AbstractUnsafeSwappedByteBuf. wrapped
Methods in io.netty.buffer that return AbstractByteBuf Modifier and Type Method Description AbstractByteBuf
AbstractPooledDerivedByteBuf. unwrap()
AbstractByteBuf
UnpooledDuplicatedByteBuf. unwrap()
AbstractByteBuf
UnpooledSlicedByteBuf. unwrap()
Methods in io.netty.buffer with parameters of type AbstractByteBuf Modifier and Type Method Description protected abstract int
AbstractUnsafeSwappedByteBuf. _getInt(AbstractByteBuf wrapped, int index)
protected int
UnsafeDirectSwappedByteBuf. _getInt(AbstractByteBuf wrapped, int index)
protected int
UnsafeHeapSwappedByteBuf. _getInt(AbstractByteBuf wrapped, int index)
protected abstract long
AbstractUnsafeSwappedByteBuf. _getLong(AbstractByteBuf wrapped, int index)
protected long
UnsafeDirectSwappedByteBuf. _getLong(AbstractByteBuf wrapped, int index)
protected long
UnsafeHeapSwappedByteBuf. _getLong(AbstractByteBuf wrapped, int index)
protected abstract short
AbstractUnsafeSwappedByteBuf. _getShort(AbstractByteBuf wrapped, int index)
protected short
UnsafeDirectSwappedByteBuf. _getShort(AbstractByteBuf wrapped, int index)
protected short
UnsafeHeapSwappedByteBuf. _getShort(AbstractByteBuf wrapped, int index)
protected abstract void
AbstractUnsafeSwappedByteBuf. _setInt(AbstractByteBuf wrapped, int index, int value)
protected void
UnsafeDirectSwappedByteBuf. _setInt(AbstractByteBuf wrapped, int index, int value)
protected void
UnsafeHeapSwappedByteBuf. _setInt(AbstractByteBuf wrapped, int index, int value)
protected abstract void
AbstractUnsafeSwappedByteBuf. _setLong(AbstractByteBuf wrapped, int index, long value)
protected void
UnsafeDirectSwappedByteBuf. _setLong(AbstractByteBuf wrapped, int index, long value)
protected void
UnsafeHeapSwappedByteBuf. _setLong(AbstractByteBuf wrapped, int index, long value)
protected abstract void
AbstractUnsafeSwappedByteBuf. _setShort(AbstractByteBuf wrapped, int index, short value)
protected void
UnsafeDirectSwappedByteBuf. _setShort(AbstractByteBuf wrapped, int index, short value)
protected void
UnsafeHeapSwappedByteBuf. _setShort(AbstractByteBuf wrapped, int index, short value)
private static long
UnsafeDirectSwappedByteBuf. addr(AbstractByteBuf wrapped, int index)
(package private) static ByteBuf
UnsafeByteBufUtil. copy(AbstractByteBuf buf, long addr, int index, int length)
(package private) static void
UnsafeByteBufUtil. getBytes(AbstractByteBuf buf, long addr, int index, byte[] dst, int dstIndex, int length)
(package private) static void
UnsafeByteBufUtil. getBytes(AbstractByteBuf buf, long addr, int index, ByteBuf dst, int dstIndex, int length)
(package private) static void
UnsafeByteBufUtil. getBytes(AbstractByteBuf buf, long addr, int index, java.io.OutputStream out, int length)
(package private) static void
UnsafeByteBufUtil. getBytes(AbstractByteBuf buf, long addr, int index, java.nio.ByteBuffer dst)
(package private) <U extends AbstractPooledDerivedByteBuf>
UAbstractPooledDerivedByteBuf. init(AbstractByteBuf unwrapped, ByteBuf wrapped, int readerIndex, int writerIndex, int maxCapacity)
(package private) static PooledDuplicatedByteBuf
PooledDuplicatedByteBuf. newInstance(AbstractByteBuf unwrapped, ByteBuf wrapped, int readerIndex, int writerIndex)
(package private) static PooledSlicedByteBuf
PooledSlicedByteBuf. newInstance(AbstractByteBuf unwrapped, ByteBuf wrapped, int index, int length)
private static PooledSlicedByteBuf
PooledSlicedByteBuf. newInstance0(AbstractByteBuf unwrapped, ByteBuf wrapped, int adjustment, int length)
(package private) static void
UnsafeByteBufUtil. setBytes(AbstractByteBuf buf, long addr, int index, byte[] src, int srcIndex, int length)
(package private) static void
UnsafeByteBufUtil. setBytes(AbstractByteBuf buf, long addr, int index, ByteBuf src, int srcIndex, int length)
(package private) static int
UnsafeByteBufUtil. setBytes(AbstractByteBuf buf, long addr, int index, java.io.InputStream in, int length)
(package private) static void
UnsafeByteBufUtil. setBytes(AbstractByteBuf buf, long addr, int index, java.nio.ByteBuffer src)
private static void
UnsafeByteBufUtil. setSingleBytes(AbstractByteBuf buf, long addr, int index, java.nio.ByteBuffer src, int length)
(package private) static int
ByteBufUtil. writeAscii(AbstractByteBuf buffer, int writerIndex, java.lang.CharSequence seq, int len)
(package private) static int
ByteBufUtil. writeUtf8(AbstractByteBuf buffer, int writerIndex, java.lang.CharSequence seq, int len)
(package private) static int
ByteBufUtil. writeUtf8(AbstractByteBuf buffer, int writerIndex, java.lang.CharSequence seq, int start, int end)
private static int
ByteBufUtil. writeUtf8Surrogate(AbstractByteBuf buffer, int writerIndex, char c, char c2)
Constructors in io.netty.buffer with parameters of type AbstractByteBuf Constructor Description AbstractUnsafeSwappedByteBuf(AbstractByteBuf buf)
PooledNonRetainedDuplicateByteBuf(ReferenceCounted referenceCountDelegate, AbstractByteBuf buffer)
PooledNonRetainedSlicedByteBuf(ReferenceCounted referenceCountDelegate, AbstractByteBuf buffer, int index, int length)
UnpooledDuplicatedByteBuf(AbstractByteBuf buffer)
UnpooledSlicedByteBuf(AbstractByteBuf buffer, int index, int length)
UnsafeDirectSwappedByteBuf(AbstractByteBuf buf)
UnsafeHeapSwappedByteBuf(AbstractByteBuf buf)
-