Uses of Interface
io.netty5.util.SafeCloseable
-
Packages that use SafeCloseable Package Description io.netty5.buffer.api IncubatingBuffer
API, as a proposed alternative toByteBuf
.io.netty5.buffer.api.internal Internal implementation details that can be shared among Buffer implementations.io.netty5.buffer.api.pool A poolingBufferAllocator
implementation based on jemalloc.io.netty5.util Utility classes used across multiple packages.io.netty5.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of SafeCloseable in io.netty5.buffer.api
Subinterfaces of SafeCloseable in io.netty5.buffer.api Modifier and Type Interface Description interface
BufferAllocator
Interface for allocatingBuffer
s.interface
ComponentIterator<T extends ComponentIterator.Next>
A facade for iterating the readable or writable components of aBuffer
.Classes in io.netty5.buffer.api that implement SafeCloseable Modifier and Type Class Description class
SensitiveBufferAllocator
ThisBufferAllocator
is for allocating off-heapBuffer
s that may contain sensitive information, which should be erased from memory (overwritten) when the buffer is closed.Methods in io.netty5.buffer.api that return SafeCloseable Modifier and Type Method Description static SafeCloseable
MemoryManager. onLeakDetected(Consumer<LeakInfo> callback)
Register a callback that will be called whenever aBuffer
instance is leaked. -
Uses of SafeCloseable in io.netty5.buffer.api.internal
Classes in io.netty5.buffer.api.internal that implement SafeCloseable Modifier and Type Class Description class
SendFromOwned<I extends Resource<I>,T extends ResourceSupport<I,T>>
class
SingleComponentIterator<T extends ComponentIterator.Next>
Methods in io.netty5.buffer.api.internal that return SafeCloseable Modifier and Type Method Description static SafeCloseable
LeakDetection. onLeakDetected(Consumer<LeakInfo> callback)
Internal API forMemoryManager.onLeakDetected(Consumer)
. -
Uses of SafeCloseable in io.netty5.buffer.api.pool
Classes in io.netty5.buffer.api.pool that implement SafeCloseable Modifier and Type Class Description class
PooledBufferAllocator
-
Uses of SafeCloseable in io.netty5.util
Subinterfaces of SafeCloseable in io.netty5.util Modifier and Type Interface Description interface
Send<T extends Resource<T>>
A temporary holder of aResource
, used for transferring the ownership of the resource from one thread to another. -
Uses of SafeCloseable in io.netty5.util.internal
Classes in io.netty5.util.internal that implement SafeCloseable Modifier and Type Class Description class
SendFromSupplier<T extends Resource<T>>
-