Interface Trie.TransitionsReceiver

All Known Subinterfaces:
Trie.ResettingTransitionsReceiver, Trie.ValueConsumer<T>, Trie.Walker<T,R>
All Known Implementing Classes:
TrieEntriesIterator, TrieEntriesWalker, TriePathReconstructor
Enclosing class:
Trie<T>

protected static interface Trie.TransitionsReceiver
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addPathByte(int nextByte)
    Add a single byte to the path.
    void
    addPathBytes(org.agrona.DirectBuffer buffer, int pos, int count)
    Add the count bytes from position pos in the given buffer.
  • Method Details

    • addPathByte

      void addPathByte(int nextByte)
      Add a single byte to the path.
    • addPathBytes

      void addPathBytes(org.agrona.DirectBuffer buffer, int pos, int count)
      Add the count bytes from position pos in the given buffer.