Interface IncrementalTrieWriter.PartialTail

Enclosing interface:
IncrementalTrieWriter<VALUE>

public static interface IncrementalTrieWriter.PartialTail
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Number of keys written
    long
    Cutoff point.
    long
    Position of the root of the partial representation.
    Buffer containing in-memory representation of the tail.
  • Method Details

    • root

      long root()
      Position of the root of the partial representation. Resides in the tail buffer.
    • count

      long count()
      Number of keys written
    • cutoff

      long cutoff()
      Cutoff point. Positions lower that this are to be read from the file; higher ones from the tail buffer.
    • tail

      ByteBuffer tail()
      Buffer containing in-memory representation of the tail.