Uses of Interface
org.apache.cassandra.db.tries.Trie.Walker
Packages that use Trie.Walker
-
Uses of Trie.Walker in org.apache.cassandra.db.tries
Subinterfaces of Trie.Walker in org.apache.cassandra.db.triesModifier and TypeInterfaceDescriptionstatic interfaceAdapter interface providing the methods aTrie.Walkerto aConsumer, so that the latter can be used withTrie.process(org.apache.cassandra.db.tries.Trie.Walker<T, R>).Classes in org.apache.cassandra.db.tries that implement Trie.WalkerModifier and TypeClassDescriptionclassTrieEntriesWalker<T,V> Walker of trie entries, used with Trie.process to walk all content in order and provide the path through which values are reached.Methods in org.apache.cassandra.db.tries with parameters of type Trie.WalkerModifier and TypeMethodDescription<R> RTrie.process(Trie.Walker<T, R> walker) Process the trie using the given Walker.