Package de.tomatengames.util.pool


package de.tomatengames.util.pool
  • Class
    Description
    Represents a pool for byte arrays.
    Represents an implementation of BytePool that does not reuse byte arrays.
    The LevelBytePool class provides a pool of byte arrays, allowing efficient management and reuse of byte arrays with varying lengths.
    The LinkedPool class implements the Pool interface and manages a pool of objects by linking them together.
    Pool<E>
    The Pool interface allows for pooling of objects.
    The Pooled interface represents a wrapper around an object that can be returned to a pool after use.
    The Unpool class implements the Pool interface but does not actually pool objects.
    A BytePool wrapper that clears (zeros) the provided byte arrays on free.