Uses of Interface
io.netty5.buffer.AllocatorControl
-
Packages that use AllocatorControl Package Description io.netty5.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.io.netty5.buffer.bytebuffer Safe ByteBuffer based implementation.io.netty5.buffer.internal Internal implementation details that can be shared among Buffer implementations.io.netty5.buffer.unsafe ABufferimplementation that is based onsun.misc.Unsafe. -
-
Uses of AllocatorControl in io.netty5.buffer
Methods in io.netty5.buffer with parameters of type AllocatorControl Modifier and Type Method Description BufferMemoryManager. allocateShared(AllocatorControl allocatorControl, long size, Function<Drop<Buffer>,Drop<Buffer>> dropDecorator, AllocationType allocationType)Allocates a shared buffer.BufferMemoryManager. recoverMemory(AllocatorControl allocatorControl, Object recoverableMemory, Drop<Buffer> drop)Recover the memory from a priorMemoryManager.unwrapRecoverableMemory(Buffer)call, and wrap it in aBufferinstance. -
Uses of AllocatorControl in io.netty5.buffer.bytebuffer
Methods in io.netty5.buffer.bytebuffer with parameters of type AllocatorControl Modifier and Type Method Description BufferByteBufferMemoryManager. allocateShared(AllocatorControl allocatorControl, long size, Function<Drop<Buffer>,Drop<Buffer>> dropDecorator, AllocationType allocationType)BufferByteBufferMemoryManager. recoverMemory(AllocatorControl allocatorControl, Object recoverableMemory, Drop<Buffer> drop) -
Uses of AllocatorControl in io.netty5.buffer.internal
Fields in io.netty5.buffer.internal declared as AllocatorControl Modifier and Type Field Description protected AllocatorControlAdaptableBuffer. controlConstructors in io.netty5.buffer.internal with parameters of type AllocatorControl Constructor Description AdaptableBuffer(Drop<T> drop, AllocatorControl control) -
Uses of AllocatorControl in io.netty5.buffer.unsafe
Methods in io.netty5.buffer.unsafe with parameters of type AllocatorControl Modifier and Type Method Description BufferUnsafeMemoryManager. allocateShared(AllocatorControl control, long size, Function<Drop<Buffer>,Drop<Buffer>> dropDecorator, AllocationType allocationType)BufferUnsafeMemoryManager. recoverMemory(AllocatorControl allocatorControl, Object recoverableMemory, Drop<Buffer> drop)
-