Uses of Interface
io.netty5.buffer.api.AllocatorControl
-
Packages that use AllocatorControl Package Description io.netty5.buffer.api IncubatingBuffer
API, as a proposed alternative toByteBuf
.io.netty5.buffer.api.bytebuffer Safe ByteBuffer based implementation.io.netty5.buffer.api.internal Internal implementation details that can be shared among Buffer implementations.io.netty5.buffer.api.unsafe ABuffer
implementation that is based onsun.misc.Unsafe
. -
-
Uses of AllocatorControl in io.netty5.buffer.api
Methods in io.netty5.buffer.api with parameters of type AllocatorControl Modifier and Type Method Description Buffer
MemoryManager. allocateShared(AllocatorControl allocatorControl, long size, Function<Drop<Buffer>,Drop<Buffer>> dropDecorator, AllocationType allocationType)
Allocates a shared buffer.Buffer
MemoryManager. recoverMemory(AllocatorControl allocatorControl, Object recoverableMemory, Drop<Buffer> drop)
Recover the memory from a priorMemoryManager.unwrapRecoverableMemory(Buffer)
call, and wrap it in aBuffer
instance. -
Uses of AllocatorControl in io.netty5.buffer.api.bytebuffer
Methods in io.netty5.buffer.api.bytebuffer with parameters of type AllocatorControl Modifier and Type Method Description Buffer
ByteBufferMemoryManager. allocateShared(AllocatorControl allocatorControl, long size, Function<Drop<Buffer>,Drop<Buffer>> dropDecorator, AllocationType allocationType)
Buffer
ByteBufferMemoryManager. recoverMemory(AllocatorControl allocatorControl, Object recoverableMemory, Drop<Buffer> drop)
-
Uses of AllocatorControl in io.netty5.buffer.api.internal
Fields in io.netty5.buffer.api.internal declared as AllocatorControl Modifier and Type Field Description protected AllocatorControl
AdaptableBuffer. control
Constructors in io.netty5.buffer.api.internal with parameters of type AllocatorControl Constructor Description AdaptableBuffer(Drop<T> drop, AllocatorControl control)
-
Uses of AllocatorControl in io.netty5.buffer.api.unsafe
Methods in io.netty5.buffer.api.unsafe with parameters of type AllocatorControl Modifier and Type Method Description Buffer
UnsafeMemoryManager. allocateShared(AllocatorControl control, long size, Function<Drop<Buffer>,Drop<Buffer>> dropDecorator, AllocationType allocationType)
Buffer
UnsafeMemoryManager. recoverMemory(AllocatorControl allocatorControl, Object recoverableMemory, Drop<Buffer> drop)
-