Uses of Interface
io.netty.util.internal.CleanableDirectBuffer
-
Packages that use CleanableDirectBuffer Package Description io.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.io.netty.channel.unix Unix specific transport.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of CleanableDirectBuffer in io.netty.buffer
Methods in io.netty.buffer that return CleanableDirectBuffer Modifier and Type Method Description protected CleanableDirectBuffer
UnpooledDirectByteBuf. allocateDirectBuffer(int capacity)
-
Uses of CleanableDirectBuffer in io.netty.channel.unix
Methods in io.netty.channel.unix that return CleanableDirectBuffer Modifier and Type Method Description static CleanableDirectBuffer
Buffer. allocateDirectBufferWithNativeOrder(int capacity)
Returns a newCleanableDirectBuffer
which has the sameByteOrder
as the native order of the machine. -
Uses of CleanableDirectBuffer in io.netty.util.internal
Methods in io.netty.util.internal that return CleanableDirectBuffer Modifier and Type Method Description CleanableDirectBuffer
CleanerJava24Linker. allocate(int capacity)
static CleanableDirectBuffer
PlatformDependent. allocateDirect(int capacity)
Allocate a directByteBuffer
of the given capacity, and return it alongside its deallocation mechanism.static CleanableDirectBuffer
PlatformDependent. allocateDirectBufferNoCleaner(int capacity)
static CleanableDirectBuffer
PlatformDependent. reallocateDirectBufferNoCleaner(CleanableDirectBuffer buffer, int capacity)
Reallocate a newByteBuffer
with the givencapacity
.Methods in io.netty.util.internal with parameters of type CleanableDirectBuffer Modifier and Type Method Description static CleanableDirectBuffer
PlatformDependent. reallocateDirectBufferNoCleaner(CleanableDirectBuffer buffer, int capacity)
Reallocate a newByteBuffer
with the givencapacity
.
-