Interface SoftBPlusTree.NodeStore

Enclosing class:
SoftBPlusTree<V>

public static interface SoftBPlusTree.NodeStore
Storage backend for serialized nodes. Provides raw I/O operations; space allocation and free block management are handled by the tree.
  • Method Summary

    Modifier and Type
    Method
    Description
    read(long offset, int length)
    Reads length bytes from offset.
    void
    truncate(long size)
    Truncates the backing storage to the given size.
    void
    write(ByteBuffer data, long offset)
    Writes data (from position to limit) at the given offset.