Uses of Interface
org.apache.ignite.cache.CacheEntry
-
Packages that use CacheEntry Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs. -
-
Uses of CacheEntry in org.apache.ignite
Methods in org.apache.ignite that return CacheEntry Modifier and Type Method Description CacheEntry<K,V>
IgniteCache. getEntry(K key)
Gets an entry from the cache.Methods in org.apache.ignite that return types with arguments of type CacheEntry Modifier and Type Method Description Collection<CacheEntry<K,V>>
IgniteCache. getEntries(Set<? extends K> keys)
Gets a collection of entries from theCache
.IgniteFuture<Collection<CacheEntry<K,V>>>
IgniteCache. getEntriesAsync(Set<? extends K> keys)
Asynchronously gets a collection of entries from theCache
.IgniteFuture<CacheEntry<K,V>>
IgniteCache. getEntryAsync(K key)
Asynchronously gets an entry from the cache.
-