Package org.apache.cassandra.db.tries
Interface Trie.TransitionsReceiver
- All Known Subinterfaces:
Trie.ResettingTransitionsReceiver,Trie.ValueConsumer<T>,Trie.Walker<T,R>
- All Known Implementing Classes:
TrieEntriesIterator,TrieEntriesWalker,TriePathReconstructor
protected static interface Trie.TransitionsReceiver
Used by
Trie.Cursor.advanceMultiple(org.apache.cassandra.db.tries.Trie.TransitionsReceiver) to feed the transitions taken.-
Method Summary
Modifier and TypeMethodDescriptionvoidaddPathByte(int nextByte) Add a single byte to the path.voidaddPathBytes(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.
-