Uses of Interface
org.infinispan.api.common.CacheEntry
Packages that use CacheEntry
Package
Description
-
Uses of CacheEntry in org.infinispan.api.async
Methods in org.infinispan.api.async that return types with arguments of type CacheEntryModifier and TypeMethodDescriptiondefault Flow.Publisher<CacheEntry<K, V>> AsyncCache.entries()Retrieve all entriesAsyncCache.entries(CacheOptions options) Retrieve all entriesdefault Flow.Publisher<CacheEntry<K, V>> Retrieves the entries for the specified keys.AsyncCache.getAll(Set<K> keys, CacheOptions options) Retrieves the entries for the specified keys.default Flow.Publisher<CacheEntry<K, V>> Retrieves the entries for the specified keys.AsyncCache.getAll(CacheOptions options, K... keys) Retrieves the entries for the specified keys.default CompletionStage<CacheEntry<K, V>> AsyncCache.getAndRemove(K key) Removes the key and returns its value if present.AsyncCache.getAndRemove(K key, CacheOptions options) Removes the key and returns its value if present.default Flow.Publisher<CacheEntry<K, V>> AsyncCache.getAndRemoveAll(Flow.Publisher<K> keys) Removes a set of keys.AsyncCache.getAndRemoveAll(Flow.Publisher<K> keys, CacheWriteOptions options) Removes a set of keys.default Flow.Publisher<CacheEntry<K, V>> AsyncCache.getAndRemoveAll(Set<K> keys) Removes a set of keys.AsyncCache.getAndRemoveAll(Set<K> keys, CacheWriteOptions options) Removes a set of keys.default CompletionStage<CacheEntry<K, V>> Get the entry of the Key if such existsAsyncCache.getEntry(K key, CacheOptions options) Get the entry of the Key if such existsdefault CompletionStage<CacheEntry<K, V>> AsyncCache.getOrReplaceEntry(K key, V value, CacheEntryVersion version) AsyncCache.getOrReplaceEntry(K key, V value, CacheEntryVersion version, CacheWriteOptions options) default CompletionStage<CacheEntry<K, V>> AsyncCache.put(K key, V value, CacheWriteOptions options) default CompletionStage<CacheEntry<K, V>> AsyncCache.putIfAbsent(K key, V value) Insert the key/value if such key does not existAsyncCache.putIfAbsent(K key, V value, CacheWriteOptions options) Insert the key/value if such key does not existMethod parameters in org.infinispan.api.async with type arguments of type CacheEntryModifier and TypeMethodDescriptiondefault CompletionStage<Void> AsyncCache.putAll(Flow.Publisher<CacheEntry<K, V>> entries) AsyncCache.putAll(Flow.Publisher<CacheEntry<K, V>> entries, CacheWriteOptions options) -
Uses of CacheEntry in org.infinispan.api.common
Subinterfaces of CacheEntry in org.infinispan.api.common -
Uses of CacheEntry in org.infinispan.api.common.events.cache
Methods in org.infinispan.api.common.events.cache that return CacheEntryModifier and TypeMethodDescriptionCacheEntry<K, V> CacheEntryEvent.newEntry()CacheEntry<K, V> CacheEntryEvent.previousEntry() -
Uses of CacheEntry in org.infinispan.api.mutiny
Methods in org.infinispan.api.mutiny that return types with arguments of type CacheEntryModifier and TypeMethodDescriptiondefault io.smallrye.mutiny.Multi<CacheEntry<K, V>> MutinyCache.entries()Retrieve all entriesio.smallrye.mutiny.Multi<CacheEntry<K, V>> MutinyCache.entries(CacheOptions options) Retrieve all entriesdefault io.smallrye.mutiny.Multi<CacheEntry<K, V>> Retrieve all the entries for the specified keys.io.smallrye.mutiny.Multi<CacheEntry<K, V>> MutinyCache.getAll(Set<K> keys, CacheOptions options) Retrieve all the entries for the specified keys.default io.smallrye.mutiny.Multi<CacheEntry<K, V>> io.smallrye.mutiny.Multi<CacheEntry<K, V>> MutinyCache.getAll(CacheOptions options, K... keys) default io.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.getAndRemove(K key) Removes the key and returns its value if present.io.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.getAndRemove(K key, CacheOptions options) Removes the key and returns its value if present.default io.smallrye.mutiny.Multi<CacheEntry<K, V>> MutinyCache.getAndRemoveAll(io.smallrye.mutiny.Multi<K> keys) Removes a set of keys.default io.smallrye.mutiny.Multi<CacheEntry<K, V>> MutinyCache.getAndRemoveAll(io.smallrye.mutiny.Multi<K> keys, CacheWriteOptions options) Removes a set of keys.default io.smallrye.mutiny.Uni<CacheEntry<K, V>> io.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.getEntry(K key, CacheOptions options) default io.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.getOrReplaceEntry(K key, V value, CacheEntryVersion version) io.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.getOrReplaceEntry(K key, V value, CacheEntryVersion version, CacheWriteOptions options) default io.smallrye.mutiny.Uni<CacheEntry<K, V>> Save the key/value.io.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.put(K key, V value, CacheWriteOptions options) default io.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.putIfAbsent(K key, V value) Insert the key/value if such key does not existio.smallrye.mutiny.Uni<CacheEntry<K, V>> MutinyCache.putIfAbsent(K key, V value, CacheWriteOptions options) Method parameters in org.infinispan.api.mutiny with type arguments of type CacheEntryModifier and TypeMethodDescriptiondefault io.smallrye.mutiny.Uni<Void> MutinyCache.putAll(io.smallrye.mutiny.Multi<CacheEntry<K, V>> pairs) Put multiple entries from aMultiio.smallrye.mutiny.Uni<Void> MutinyCache.putAll(io.smallrye.mutiny.Multi<CacheEntry<K, V>> pairs, CacheWriteOptions options) -
Uses of CacheEntry in org.infinispan.api.sync
Methods in org.infinispan.api.sync that return CacheEntryModifier and TypeMethodDescriptiondefault CacheEntry<K, V> SyncCache.getAndRemove(K key) Removes the key and returns its value if present.CacheEntry<K, V> SyncCache.getAndRemove(K key, CacheOptions options) Removes the key and returns its value if present.default CacheEntry<K, V> Get the entry of the Key if such existsCacheEntry<K, V> SyncCache.getEntry(K key, CacheOptions options) Get the entry of the Key if such existsdefault CacheEntry<K, V> SyncCache.getOrReplaceEntry(K key, V value, CacheEntryVersion version) CacheEntry<K, V> SyncCache.getOrReplaceEntry(K key, V value, CacheEntryVersion version, CacheWriteOptions options) default CacheEntry<K, V> Insert the key/value pair.CacheEntry<K, V> SyncCache.put(K key, V value, CacheWriteOptions options) default CacheEntry<K, V> SyncCache.putIfAbsent(K key, V value) Save the key/value.CacheEntry<K, V> SyncCache.putIfAbsent(K key, V value, CacheWriteOptions options) Insert the key/value if such key does not existMethods in org.infinispan.api.sync that return types with arguments of type CacheEntryModifier and TypeMethodDescriptiondefault CloseableIterable<CacheEntry<K, V>> SyncCache.entries()Retrieve all entriesSyncCache.entries(CacheOptions options) Retrieve all entriesdefault Map<K, CacheEntry<K, V>> SyncCache.getAndRemoveAll(Set<K> keys) Removes a set of keys.default Map<K, CacheEntry<K, V>> SyncCache.getAndRemoveAll(Set<K> keys, CacheWriteOptions options) Removes a set of keys.