Uses of Interface
io.grpc.PersistentHashArrayMappedTrie.Node
-
Packages that use PersistentHashArrayMappedTrie.Node Package Description io.grpc The gRPC core public API. -
-
Uses of PersistentHashArrayMappedTrie.Node in io.grpc
Classes in io.grpc that implement PersistentHashArrayMappedTrie.Node Modifier and Type Class Description (package private) static class
PersistentHashArrayMappedTrie.CollisionLeaf<K,V>
(package private) static class
PersistentHashArrayMappedTrie.CompressedIndex<K,V>
(package private) static class
PersistentHashArrayMappedTrie.Leaf<K,V>
Fields in io.grpc declared as PersistentHashArrayMappedTrie.Node Modifier and Type Field Description (package private) PersistentHashArrayMappedTrie.Node<Context.Key<?>,java.lang.Object>
Context. keyValueEntries
(package private) PersistentHashArrayMappedTrie.Node<K,V>[]
PersistentHashArrayMappedTrie.CompressedIndex. values
Methods in io.grpc that return PersistentHashArrayMappedTrie.Node Modifier and Type Method Description (package private) static <K,V>
PersistentHashArrayMappedTrie.Node<K,V>PersistentHashArrayMappedTrie.CompressedIndex. combine(PersistentHashArrayMappedTrie.Node<K,V> node1, int hash1, PersistentHashArrayMappedTrie.Node<K,V> node2, int hash2, int bitsConsumed)
PersistentHashArrayMappedTrie.Node<K,V>
PersistentHashArrayMappedTrie.CollisionLeaf. put(K key, V value, int hash, int bitsConsumed)
PersistentHashArrayMappedTrie.Node<K,V>
PersistentHashArrayMappedTrie.CompressedIndex. put(K key, V value, int hash, int bitsConsumed)
PersistentHashArrayMappedTrie.Node<K,V>
PersistentHashArrayMappedTrie.Leaf. put(K key, V value, int hash, int bitsConsumed)
PersistentHashArrayMappedTrie.Node<K,V>
PersistentHashArrayMappedTrie.Node. put(K key, V value, int hash, int bitsConsumed)
(package private) static <K,V>
PersistentHashArrayMappedTrie.Node<K,V>PersistentHashArrayMappedTrie. put(PersistentHashArrayMappedTrie.Node<K,V> root, K key, V value)
Returns a new trie where the key is set to the specified value.Methods in io.grpc with parameters of type PersistentHashArrayMappedTrie.Node Modifier and Type Method Description (package private) static <K,V>
PersistentHashArrayMappedTrie.Node<K,V>PersistentHashArrayMappedTrie.CompressedIndex. combine(PersistentHashArrayMappedTrie.Node<K,V> node1, int hash1, PersistentHashArrayMappedTrie.Node<K,V> node2, int hash2, int bitsConsumed)
(package private) static <K,V>
VPersistentHashArrayMappedTrie. get(PersistentHashArrayMappedTrie.Node<K,V> root, K key)
Returns the value with the specified key, ornull
if it does not exist.(package private) static <K,V>
PersistentHashArrayMappedTrie.Node<K,V>PersistentHashArrayMappedTrie. put(PersistentHashArrayMappedTrie.Node<K,V> root, K key, V value)
Returns a new trie where the key is set to the specified value.Constructors in io.grpc with parameters of type PersistentHashArrayMappedTrie.Node Constructor Description CompressedIndex(int bitmap, PersistentHashArrayMappedTrie.Node<K,V>[] values, int size)
Context(Context parent, PersistentHashArrayMappedTrie.Node<Context.Key<?>,java.lang.Object> keyValueEntries)
Construct a context that cannot be cancelled but will cascade cancellation from its parent if it is cancellable.Context(PersistentHashArrayMappedTrie.Node<Context.Key<?>,java.lang.Object> keyValueEntries, int generation)
Construct a context that cannot be cancelled and will not cascade cancellation from its parent.
-