Class AbstractDelegatingAdvancedCache<K,V>
- All Implemented Interfaces:
ConcurrentMap<K,
,V> Map<K,
,V> AdvancedCache<K,
,V> Cache<K,
,V> InternalCache<K,
,V> AsyncCache<K,
,V> BasicCache<K,
,V> BatchingCache
,Lifecycle
,TransactionalCache
,FilteringListenable<K,
,V> Listenable
- Direct Known Subclasses:
AliasCache
,DecoratedCache
,EncoderCache
,SecureCacheImpl
AbstractDelegatingCache
, but for AdvancedCache
.- Author:
- Mircea.Markus@jboss.com, Tristan Tarrant
- See Also:
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
-
Method Summary
Modifier and TypeMethodDescriptionCacheSet
<CacheEntry<K, V>> Identical toCache.entrySet()
but is typed to return CacheEntries instead of Entries.An overloaded form ofinvalid reference
#compute(K, BiFunction)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.computeAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) Asynchronous version ofConcurrentMap.compute(Object, BiFunction)
.computeAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit) Asynchronous version ofBasicCache.compute(Object, BiFunction, long, TimeUnit)
.computeAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) Asynchronous version ofBasicCache.compute(Object, BiFunction, long, TimeUnit, long, TimeUnit)
.computeAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, Metadata metadata) Overloadedinvalid reference
#computeAsync(K, BiFunction)
An overloaded form ofinvalid reference
#computeIfAbsent(K, Function)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.computeIfAbsentAsync
(K key, Function<? super K, ? extends V> mappingFunction) Asynchronous version ofConcurrentMap.computeIfAbsent(Object, Function)
.computeIfAbsentAsync
(K key, Function<? super K, ? extends V> mappingFunction, long lifespan, TimeUnit lifespanUnit) Asynchronous version ofBasicCache.computeIfAbsent(Object, Function, long, TimeUnit)
.computeIfAbsentAsync
(K key, Function<? super K, ? extends V> mappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) Asynchronous version ofBasicCache.computeIfAbsent(Object, Function, long, TimeUnit, long, TimeUnit)
.Overloadedinvalid reference
#computeIfAbsentAsync(K, Function)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.computeIfPresent
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, Metadata metadata) An overloaded form ofinvalid reference
#computeIfPresent(K, BiFunction)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.computeIfPresentAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) Asynchronous version ofConcurrentMap.computeIfPresent(Object, BiFunction)
.computeIfPresentAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit) Asynchronous version ofBasicCache.computeIfPresent(Object, BiFunction, long, TimeUnit)
.computeIfPresentAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) Asynchronous version ofBasicCache.computeIfPresent(Object, BiFunction, long, TimeUnit, long, TimeUnit)
.computeIfPresentAsync
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, Metadata metadata) Overloadedinvalid reference
#computeIfPresentAsync(K, BiFunction)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.Gets a collection of entries, returning them asMap
of the values associated with the set of keys requested.getAllAsync
(Set<?> keys) TODO This should be in AdvancedCache with getAllMap
<K, CacheEntry<K, V>> getAllCacheEntries
(Set<?> keys) Gets a collection of entries from theAdvancedCache
, returning them asMap
of the cache entries associated with the set of keys requested.getAndPutAll
(Map<? extends K, ? extends V> map) Executes an equivalent ofMap.putAll(Map)
, returning previous values of the modified entries.Retrieves theAuthorizationManager
if the cache has security enabled.Returns the cache's availability.Returns the component in charge of batching cache operations.CacheEntry
<K, V> getCacheEntry
(Object key) Retrieves a CacheEntry corresponding to a specific key.getCacheEntryAsync
(Object key) Retrieves a CacheEntry corresponding to a specific key.Returns the cache loader associated associated with this cache.Returns the container where data is stored in the cache.Retrieves a reference to theDistributionManager
if the cache is configured to use Distribution.It fetches all the keys which belong to the group.Returns the component that deals with all aspects of acquiring and releasing locks for cache entries.Returns the component in charge of communication with other caches in the cluster.getStats()
Returns aStats
object that allows several statistics associated with this cache at runtime.jakarta.transaction.TransactionManager
Returns theXAResource
associated with this cache which can be used to do transactional recovery.boolean
boolean
lock
(Collection<? extends K> keys) Locks collections of keys eagerly across cache nodes in a cluster.boolean
Locks a given key or keys eagerly across cache nodes in a cluster.Whenever this cache acquires a lock it will do so using the given Object as the owner of said lock.Returns a sequential stream using this Cache as the source.merge
(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, Metadata metadata) An overloaded form ofCache.merge(Object, Object, BiFunction)
, which takes in an instance ofMetadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.mergeAsync
(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction) Asynchronous version ofConcurrentMap.merge(Object, Object, BiFunction)
.mergeAsync
(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit) Asynchronous version ofBasicCache.merge(Object, Object, BiFunction, long, TimeUnit)
.mergeAsync
(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) Asynchronous version ofBasicCache.merge(Object, Object, BiFunction, long, TimeUnit, long, TimeUnit)
.mergeAsync
(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, Metadata metadata) OverloadedAsyncCache.mergeAsync(Object, Object, BiFunction)
, which takes in an instance ofMetadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.noFlags()
Unset all flags set on this cache usingAdvancedCache.withFlags(Flag...)
orAdvancedCache.withFlags(Collection)
methods.An overloaded form ofinvalid reference
#put(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.void
An overloaded form ofMap.putAll(Map)
, which takes in an instance ofMetadata
which can be used to provide metadata information for the entries being stored, such as lifespan, version of value...etc.putAllAsync
(Map<? extends K, ? extends V> map, Metadata metadata) Asynchronous version ofAdvancedCache.put(Object, Object, Metadata)
which stores metadata alongside the value.putAsyncEntry
(K key, V value, Metadata metadata) Extension ofAdvancedCache.putAsync(K, V, Metadata)
which returns aCacheEntry
instead of only the previous value.void
putForExternalRead
(K key, V value, Metadata metadata) An overloaded form ofinvalid reference
#putForExternalRead(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.putIfAbsent
(K key, V value, Metadata metadata) An overloaded form ofinvalid reference
#putIfAbsent(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.putIfAbsentAsync
(K key, V value, Metadata metadata) An overloaded form ofinvalid reference
#putIfAbsentAsync(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.putIfAbsentAsyncEntry
(K key, V value, Metadata metadata) An extension form ofAdvancedCache.putIfAbsentAsync(K, V, Metadata)
, which returns aCacheEntry
instead of only the value.removeAsyncEntry
(Object key) An extension ofAsyncCache.removeAsync(Object)
, which returns aCacheEntry
instead of only the value.void
removeGroup
(String groupName) It removes all the key which belongs to a group.removeLifespanExpired
(K key, V value, Long lifespan) Attempts to remove the entry if it is expired.removeMaxIdleExpired
(K key, V value) Attempts to remove the entry for the given key, if it has expired due to max idle.An overloaded form ofinvalid reference
#replace(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.boolean
An overloaded form ofinvalid reference
#replace(K, V, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.replaceAsync
(K key, V value, Metadata metadata) An overloaded form ofinvalid reference
#replaceAsync(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.replaceAsync
(K key, V oldValue, V newValue, Metadata metadata) replaceAsyncEntry
(K key, V value, Metadata metadata) An extension ofAdvancedCache.replaceAsync(K, V, Metadata)
, which returns aCacheEntry
instead of only the value.abstract AdvancedCache
rewrap
(AdvancedCache newDelegate) No generics because some methods returnAdvancedCache<?, ?>
, and returning the proper type would require erasure anyway.void
setAvailability
(AvailabilityMode availabilityMode) Manually change the availability of the cache.void
setCacheAvailability
(String availabilityString) void
setRebalancingEnabled
(boolean enabled) Touches the given key if present.The same asAdvancedCache.touch(Object, boolean)
except that the segment is already known.transform
(Function<AdvancedCache<K, V>, ? extends AdvancedCache<K, V>> transformation) Apply thetransformation
on eachAdvancedCache
instance in a delegation chain, starting with the innermost implementation.AdvancedCache
<?, ?> withEncoding
(Class<? extends Encoder> encoder) Performs any cache operations using the specifiedEncoder
.withEncoding
(Class<? extends Encoder> keyEncoder, Class<? extends Encoder> valueEncoder) Performs any cache operations using the specified pair ofEncoder
.withFlags
(Collection<Flag> flags) An alternative toAdvancedCache.withFlags(Flag...)
not requiring array allocation.An alternative toAdvancedCache.withFlags(Flag...)
optimized for a single flag.A method that adds flags to any API call.AdvancedCache
<?, ?> withKeyEncoding
(Class<? extends Encoder> encoder) AdvancedCache
<?, ?> withMediaType
(String keyMediaType, String valueMediaType) Perform any cache operations using an alternateMediaType
.<K1,
V1> AdvancedCache <K1, V1> withMediaType
(MediaType keyMediaType, MediaType valueMediaType) Perform any cache operations using the sameMediaType
of the cache storage.withSubject
(Subject subject) Performs any cache operations using the specifiedSubject
.withWrapping
(Class<? extends Wrapper> wrapper) Deprecated, for removal: This API element is subject to removal in a future version.withWrapping
(Class<? extends Wrapper> keyWrapper, Class<? extends Wrapper> valueWrapper) Deprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class org.infinispan.cache.impl.AbstractDelegatingCache
addFilteredListener, addFilteredListenerAsync, addListener, addListener, addListenerAsync, addListenerAsync, addStorageFormatFilteredListener, addStorageFormatFilteredListenerAsync, clear, clearAsync, compute, compute, compute, computeIfAbsent, computeIfAbsent, computeIfAbsent, computeIfPresent, computeIfPresent, computeIfPresent, containsKey, containsValue, continuousQuery, endBatch, entrySet, evict, forEach, get, getAsync, getCacheConfiguration, getCacheManager, getCacheName, getCacheStatus, getConfigurationAsProperties, getDelegate, getName, getOrDefault, getStatus, getVersion, isEmpty, keySet, merge, merge, merge, put, put, put, putAll, putAll, putAll, putAllAsync, putAllAsync, putAllAsync, putAsync, putAsync, putAsync, putForExternalRead, putForExternalRead, putForExternalRead, putIfAbsent, putIfAbsent, putIfAbsent, putIfAbsentAsync, putIfAbsentAsync, putIfAbsentAsync, query, remove, remove, removeAsync, removeAsync, removeListener, removeListenerAsync, replace, replace, replace, replace, replace, replace, replaceAll, replaceAsync, replaceAsync, replaceAsync, replaceAsync, replaceAsync, replaceAsync, shutdown, size, sizeAsync, start, startBatch, stop, toString, unwrapCache, values
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.infinispan.AdvancedCache
compute, computeAsync, computeIfAbsent, computeIfAbsentAsync, computeIfPresent, computeIfPresentAsync, merge, mergeAsync
Methods inherited from interface org.infinispan.commons.api.AsyncCache
clearAsync, containsKeyAsync, getAsync, putAllAsync, putAllAsync, putAllAsync, putAsync, putAsync, putAsync, putIfAbsentAsync, putIfAbsentAsync, putIfAbsentAsync, removeAsync, removeAsync, replaceAsync, replaceAsync, replaceAsync, replaceAsync, replaceAsync, replaceAsync, sizeAsync
Methods inherited from interface org.infinispan.commons.api.BasicCache
compute, compute, computeIfAbsent, computeIfAbsent, computeIfPresent, computeIfPresent, continuousQuery, getName, getVersion, merge, merge, put, put, put, putAll, putAll, putIfAbsent, putIfAbsent, query, remove, replace, replace, replace, replace
Methods inherited from interface org.infinispan.commons.api.BatchingCache
endBatch, startBatch
Methods inherited from interface org.infinispan.Cache
clear, compute, compute, compute, compute, computeAsync, computeAsync, computeAsync, computeIfAbsent, computeIfAbsent, computeIfAbsent, computeIfAbsent, computeIfAbsentAsync, computeIfAbsentAsync, computeIfAbsentAsync, computeIfPresent, computeIfPresent, computeIfPresentAsync, entrySet, evict, getCacheConfiguration, getCacheManager, getStatus, keySet, merge, merge, merge, merge, mergeAsync, mergeAsync, mergeAsync, putForExternalRead, putForExternalRead, putForExternalRead, shutdown, size, stop, values
Methods inherited from interface java.util.concurrent.ConcurrentMap
forEach, getOrDefault, putIfAbsent, remove, replace, replace, replaceAll
Methods inherited from interface org.infinispan.notifications.FilteringListenable
addFilteredListener, addFilteredListenerAsync, addListener, addListenerAsync, addStorageFormatFilteredListener, addStorageFormatFilteredListenerAsync
Methods inherited from interface org.infinispan.cache.impl.InternalCache
bypassInvocationContextFactory
Methods inherited from interface org.infinispan.notifications.Listenable
addListener, addListenerAsync, removeListener, removeListenerAsync
Methods inherited from interface java.util.Map
containsKey, containsValue, equals, get, hashCode, isEmpty, putAll
-
Field Details
-
cache
-
-
Constructor Details
-
AbstractDelegatingAdvancedCache
-
-
Method Details
-
getAdvancedCache
- Specified by:
getAdvancedCache
in interfaceCache<K,
V> - Overrides:
getAdvancedCache
in classAbstractDelegatingCache<K,
V>
-
getExpirationManager
- Specified by:
getExpirationManager
in interfaceAdvancedCache<K,
V> - Returns:
- the expiration manager - if one is configured - for this cache instance
-
getComponentRegistry
- Specified by:
getComponentRegistry
in interfaceInternalCache<K,
V> - Overrides:
getComponentRegistry
in classAbstractDelegatingCache<K,
V>
-
getDistributionManager
Description copied from interface:AdvancedCache
Retrieves a reference to theDistributionManager
if the cache is configured to use Distribution. Otherwise, returns a null.- Specified by:
getDistributionManager
in interfaceAdvancedCache<K,
V> - Returns:
- a DistributionManager, or null.
-
getAuthorizationManager
Description copied from interface:AdvancedCache
Retrieves theAuthorizationManager
if the cache has security enabled. Otherwise returns null- Specified by:
getAuthorizationManager
in interfaceAdvancedCache<K,
V> - Returns:
- an AuthorizationManager or null
-
lockAs
Description copied from interface:AdvancedCache
Whenever this cache acquires a lock it will do so using the given Object as the owner of said lock.This can be useful when a lock may have been manually acquired and you wish to reuse that lock across invocations.
Great care should be taken with this command as misuse can very easily lead to deadlocks.
- Specified by:
lockAs
in interfaceAdvancedCache<K,
V> - Parameters:
lockOwner
- the lock owner to lock any keys as- Returns:
- an
AdvancedCache
instance on which when an operation is invoked it will use lock owner object to acquire any locks
-
getRpcManager
Description copied from interface:AdvancedCache
Returns the component in charge of communication with other caches in the cluster. If the cache'sClusteringConfiguration.cacheMode()
isCacheMode.LOCAL
, this method will return null.- Specified by:
getRpcManager
in interfaceAdvancedCache<K,
V> - Returns:
- the RPC manager component associated with this cache instance or null
-
getBatchContainer
Description copied from interface:AdvancedCache
Returns the component in charge of batching cache operations.- Specified by:
getBatchContainer
in interfaceAdvancedCache<K,
V> - Returns:
- the batching component associated with this cache instance
-
getDataContainer
Description copied from interface:AdvancedCache
Returns the container where data is stored in the cache. Users should interact with this component with care because direct calls on it bypass the internal interceptors and other infrastructure in place to guarantee the consistency of data.- Specified by:
getDataContainer
in interfaceAdvancedCache<K,
V> - Returns:
- the data container associated with this cache instance
-
getTransactionManager
public jakarta.transaction.TransactionManager getTransactionManager()- Specified by:
getTransactionManager
in interfaceTransactionalCache
- Returns:
- the
TransactionManager
in use by this cache ornull
if the cache isn't transactional.
-
getLockManager
Description copied from interface:AdvancedCache
Returns the component that deals with all aspects of acquiring and releasing locks for cache entries.- Specified by:
getLockManager
in interfaceAdvancedCache<K,
V> - Returns:
- retrieves the lock manager associated with this cache instance
-
getXAResource
Description copied from interface:AdvancedCache
Returns theXAResource
associated with this cache which can be used to do transactional recovery.- Specified by:
getXAResource
in interfaceAdvancedCache<K,
V> - Returns:
- an instance of
XAResource
-
getAvailability
Description copied from interface:AdvancedCache
Returns the cache's availability. In local mode this method will always returnAvailabilityMode.AVAILABLE
. In clustered mode, thePartitionHandlingManager
is queried to obtain the availability mode.- Specified by:
getAvailability
in interfaceAdvancedCache<K,
V>
-
setAvailability
Description copied from interface:AdvancedCache
Manually change the availability of the cache. Doesn't change anything if the cache is not clustered orPartitionHandlingConfiguration.whenSplit()
is set toPartitionHandling.ALLOW_READ_WRITES
.- Specified by:
setAvailability
in interfaceAdvancedCache<K,
V>
-
getCacheAvailability
@ManagedAttribute(description="Returns the cache availability", displayName="Cache availability", dataType=TRAIT, writable=true) public String getCacheAvailability() -
setCacheAvailability
-
isRebalancingEnabled
@ManagedAttribute(description="Returns whether cache rebalancing is enabled", displayName="Cache rebalacing", dataType=TRAIT, writable=true) public boolean isRebalancingEnabled() -
setRebalancingEnabled
public void setRebalancingEnabled(boolean enabled) -
touch
Description copied from interface:AdvancedCache
Touches the given key if present. This will refresh its last access time, used for max idle, and count as a recent access for eviction purposes.Note that it is possible to touch an entry that is expired via max idle if
touchEvenIfExpired
argument istrue
.This method will return without blocking and complete the returned stage with a value after all appropriate nodes have actually touched the value.
- Specified by:
touch
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key of the entry to touchtouchEvenIfExpired
- true if the entry should be touched even if already expired via max idle, effectively making it so the entry is no longer expired via max idle- Returns:
- true if the entry was actually touched
-
touch
Description copied from interface:AdvancedCache
The same asAdvancedCache.touch(Object, boolean)
except that the segment is already known. This can be helpful to reduce an extra segment computation- Specified by:
touch
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key of the entry to touchsegment
- segment of the keytouchEvenIfExpired
- true if the entry should be touched even if already expired via max idle, effectively making it so the entry is no longer expired via max idle- Returns:
- true if the entry was actually touched
-
withFlags
Description copied from interface:AdvancedCache
An alternative toAdvancedCache.withFlags(Flag...)
optimized for a single flag.- Specified by:
withFlags
in interfaceAdvancedCache<K,
V>
-
withFlags
Description copied from interface:AdvancedCache
A method that adds flags to any API call. For example, consider the following code snippet:cache.withFlags(Flag.FORCE_WRITE_LOCK).get(key);
will invoke a cache.get() with a write lock forced. Note that for the flag to take effect, the cache operation must be invoked on the instance returned by this method. As an alternative to setting this on every invocation, users should also consider saving the decorated cache, as this allows for more readable code. E.g.:AdvancedCache<?, ?> forceWriteLockCache = cache.withFlags(Flag.FORCE_WRITE_LOCK); forceWriteLockCache.get(key1); forceWriteLockCache.get(key2); forceWriteLockCache.get(key3);
- Specified by:
withFlags
in interfaceAdvancedCache<K,
V> - Parameters:
flags
- a set of flags to apply. See theFlag
documentation.- Returns:
- an
AdvancedCache
instance on which a real operation is to be invoked, if the flags are to be applied.
-
withFlags
Description copied from interface:AdvancedCache
An alternative toAdvancedCache.withFlags(Flag...)
not requiring array allocation.- Specified by:
withFlags
in interfaceAdvancedCache<K,
V>
-
noFlags
Description copied from interface:AdvancedCache
Unset all flags set on this cache usingAdvancedCache.withFlags(Flag...)
orAdvancedCache.withFlags(Collection)
methods.- Specified by:
noFlags
in interfaceAdvancedCache<K,
V> - Returns:
- Cache not applying any flags to the command; possibly
this
.
-
transform
public AdvancedCache<K,V> transform(Function<AdvancedCache<K, V>, ? extends AdvancedCache<K, V>> transformation) Description copied from interface:AdvancedCache
Apply thetransformation
on eachAdvancedCache
instance in a delegation chain, starting with the innermost implementation.- Specified by:
transform
in interfaceAdvancedCache<K,
V> - Parameters:
transformation
-- Returns:
- The outermost transformed cache.
-
withSubject
Description copied from interface:AdvancedCache
Performs any cache operations using the specifiedSubject
. Only applies to caches with authorization enabled (seeConfigurationBuilder.security()
).- Specified by:
withSubject
in interfaceAdvancedCache<K,
V> - Parameters:
subject
-- Returns:
- an
AdvancedCache
instance on which a real operation is to be invoked, using the specified subject
-
lock
Description copied from interface:AdvancedCache
Locks a given key or keys eagerly across cache nodes in a cluster.Keys can be locked eagerly in the context of a transaction only.
- Specified by:
lock
in interfaceAdvancedCache<K,
V> - Parameters:
key
- the keys to lock- Returns:
- true if the lock acquisition attempt was successful for all keys; false will only be returned if
the lock acquisition timed out and the operation has been called with
Flag.FAIL_SILENTLY
.
-
lock
Description copied from interface:AdvancedCache
Locks collections of keys eagerly across cache nodes in a cluster.Collections of keys can be locked eagerly in the context of a transaction only.
- Specified by:
lock
in interfaceAdvancedCache<K,
V> - Parameters:
keys
- collection of keys to lock- Returns:
- true if the lock acquisition attempt was successful for all keys; false will only be returned if
the lock acquisition timed out and the operation has been called with
Flag.FAIL_SILENTLY
.
-
getStats
Description copied from interface:AdvancedCache
Returns aStats
object that allows several statistics associated with this cache at runtime.- Specified by:
getStats
in interfaceAdvancedCache<K,
V> - Returns:
- this cache's
Stats
object
-
getClassLoader
Description copied from interface:AdvancedCache
Returns the cache loader associated associated with this cache. As an alternative to setting this on every invocation, users could also consider using theDecoratedCache
wrapper.- Specified by:
getClassLoader
in interfaceAdvancedCache<K,
V> - Returns:
- this cache's cache loader
-
getAll
Description copied from interface:AdvancedCache
Gets a collection of entries, returning them asMap
of the values associated with the set of keys requested.If the cache is configured read-through, and a get for a key would return null because an entry is missing from the cache, the Cache's
CacheLoader
is called in an attempt to load the entry. If an entry cannot be loaded for a given key, the returned Map will contain null for value of the key.Unlike other bulk methods if this invoked in an existing transaction all entries will be stored in the current transactional context
The returned
Map
will be a copy and updates to the map will not be reflected in the Cache and vice versa. The keys and values themselves however may not be copies depending on if storeAsBinary is enabled and the value was retrieved from the local node.- Specified by:
getAll
in interfaceAdvancedCache<K,
V> - Parameters:
keys
- The keys whose associated values are to be returned.- Returns:
- A map of entries that were found for the given keys. If an entry is not found for a given key, it will not be in the returned map.
-
getCacheEntry
Description copied from interface:AdvancedCache
Retrieves a CacheEntry corresponding to a specific key.- Specified by:
getCacheEntry
in interfaceAdvancedCache<K,
V> - Parameters:
key
- the key whose associated cache entry is to be returned- Returns:
- the cache entry to which the specified key is mapped, or
null
if this map contains no mapping for the key
-
getCacheEntryAsync
Description copied from interface:AdvancedCache
Retrieves a CacheEntry corresponding to a specific key.- Specified by:
getCacheEntryAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- the key whose associated cache entry is to be returned- Returns:
- a future with the cache entry to which the specified key is mapped, or with
null
if this map contains no mapping for the key
-
getAllCacheEntries
Description copied from interface:AdvancedCache
Gets a collection of entries from theAdvancedCache
, returning them asMap
of the cache entries associated with the set of keys requested.If the cache is configured read-through, and a get for a key would return null because an entry is missing from the cache, the Cache's
CacheLoader
is called in an attempt to load the entry. If an entry cannot be loaded for a given key, the returned Map will contain null for value of the key.Unlike other bulk methods if this invoked in an existing transaction all entries will be stored in the current transactional context
The returned
Map
will be a copy and updates to the map will not be reflected in the Cache and vice versa. The keys and values themselves however may not be copies depending on if storeAsBinary is enabled and the value was retrieved from the local node.- Specified by:
getAllCacheEntries
in interfaceAdvancedCache<K,
V> - Parameters:
keys
- The keys whose associated values are to be returned.- Returns:
- A map of entries that were found for the given keys. Keys not found in the cache are present in the map with null values.
-
getAndPutAll
Description copied from interface:AdvancedCache
Executes an equivalent ofMap.putAll(Map)
, returning previous values of the modified entries.- Specified by:
getAndPutAll
in interfaceAdvancedCache<K,
V> - Parameters:
map
- mappings to be stored in this map- Returns:
- A map of previous values for the given keys. If the previous mapping does not exist it will not be in the returned map.
-
getGroup
Description copied from interface:AdvancedCache
It fetches all the keys which belong to the group. Semantically, it iterates over all the keys in memory and persistence, and performs a read operation in the keys found. Multiple invocations inside a transaction ensures that all the keys previous read are returned and it may return newly added keys to the group from other committed transactions (also known as phantom reads). Themap
returned is immutable and represents the group at the time of the invocation. If you want to add or remove keys from a group useBasicCache.put(Object, Object)
andBasicCache.remove(Object)
. To remove all the keys in the group useAdvancedCache.removeGroup(String)
. To improve performance you may use theflag
Flag.SKIP_CACHE_LOAD
to avoid fetching the key/value from persistence. However, you will get an inconsistent snapshot of the group.- Specified by:
getGroup
in interfaceAdvancedCache<K,
V> - Parameters:
groupName
- the group name.- Returns:
- an immutable
Map
with the key/value pairs.
-
removeGroup
Description copied from interface:AdvancedCache
It removes all the key which belongs to a group. Semantically, it fetches the most recent group keys/values and removes them. Note that, concurrent addition perform by other transactions/threads to the group may not be removed.- Specified by:
removeGroup
in interfaceAdvancedCache<K,
V> - Parameters:
groupName
- the group name.
-
put
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#put(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.- Specified by:
put
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key to usevalue
- value to storemetadata
- information to store alongside the value- Returns:
- the previous value associated with key, or null if there was no mapping for key.
-
replace
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#replace(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
replace
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value- Returns:
- the previous value associated with the specified key, or null if there was no mapping for the key.
-
replaceAsync
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#replaceAsync(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
replaceAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value- Returns:
- the future that contains previous value associated with the specified key, or null if there was no mapping for the key.
-
replaceAsyncEntry
Description copied from interface:AdvancedCache
An extension ofAdvancedCache.replaceAsync(K, V, Metadata)
, which returns aCacheEntry
instead of only the value.- Specified by:
replaceAsyncEntry
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value- Returns:
- the future that contains previous
CacheEntry
associated with the specified key, or null if there was no mapping for the key. - See Also:
-
replace
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#replace(K, V, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
replace
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedoldValue
- value expected to be associated with the specified keyvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value- Returns:
- true if the value was replaced
-
replaceAsync
- Specified by:
replaceAsync
in interfaceAdvancedCache<K,
V>
-
putIfAbsent
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#putIfAbsent(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
putIfAbsent
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value- Returns:
- the previous value associated with the specified key, or null if there was no mapping for the key.
-
putIfAbsentAsync
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#putIfAbsentAsync(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
putIfAbsentAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value- Returns:
- A future containing the previous value associated with the specified key, or null if there was no mapping for the key.
-
putIfAbsentAsyncEntry
Description copied from interface:AdvancedCache
An extension form ofAdvancedCache.putIfAbsentAsync(K, V, Metadata)
, which returns aCacheEntry
instead of only the value.- Specified by:
putIfAbsentAsyncEntry
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value- Returns:
- the future that contains previous
CacheEntry
associated with the specified key, or null if there was no mapping for the key. - See Also:
-
putAsync
Description copied from interface:AdvancedCache
Asynchronous version ofAdvancedCache.put(Object, Object, Metadata)
which stores metadata alongside the value. This method does not block on remote calls, even if your cache mode is synchronous. Has no benefit overAdvancedCache.put(Object, Object, Metadata)
if used in LOCAL mode.- Specified by:
putAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key to usevalue
- value to storemetadata
- information to store alongside the new value- Returns:
- a future containing the old value replaced.
-
putAsyncEntry
Description copied from interface:AdvancedCache
Extension ofAdvancedCache.putAsync(K, V, Metadata)
which returns aCacheEntry
instead of only the previous value.- Specified by:
putAsyncEntry
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key to usevalue
- value to storemetadata
- information to store alongside the new value- Returns:
- a future containing the old
CacheEntry
replaced.
-
putForExternalRead
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#putForExternalRead(K, V)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
putForExternalRead
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keymetadata
- information to store alongside the new value
-
compute
public V compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, Metadata metadata) Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#compute(K, BiFunction)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.- Specified by:
compute
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedremappingFunction
- function to be applied to the specified key/valuemetadata
- information to store alongside the new value- Returns:
- the previous value associated with the specified key, or null if remapping function is gives null.
-
computeIfPresent
public V computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, Metadata metadata) Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#computeIfPresent(K, BiFunction)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
computeIfPresent
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedremappingFunction
- function to be applied to the specified key/valuemetadata
- information to store alongside the new value- Returns:
- the previous value associated with the specified key, or null if there was no mapping for the key.
-
computeIfAbsent
Description copied from interface:AdvancedCache
An overloaded form ofinvalid reference
#computeIfAbsent(K, Function)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
computeIfAbsent
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedmappingFunction
- function to be applied to the specified keymetadata
- information to store alongside the new value- Returns:
- the value created with the mapping function associated with the specified key, or the previous value associated with the specified key if the key is not absent.
-
merge
public V merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, Metadata metadata) Description copied from interface:AdvancedCache
An overloaded form ofCache.merge(Object, Object, BiFunction)
, which takes in an instance ofMetadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
merge
in interfaceAdvancedCache<K,
V> - Parameters:
key
- , key with which the resulting value is to be associatedvalue
- , the non-null value to be merged with the existing value associated with the key or, if no existing value or a null value is associated with the key, to be associated with the keyremappingFunction
- , the function to recompute a value if presentmetadata
- , information to store alongside the new value- Returns:
- the new value associated with the specified key, or null if no value is associated with the key
-
computeAsync
public CompletableFuture<V> computeAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, Metadata metadata) Description copied from interface:AdvancedCache
Overloadedinvalid reference
#computeAsync(K, BiFunction)
- Specified by:
computeAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedremappingFunction
- function to be applied to the specified key/valuemetadata
- information to store alongside the new value- Returns:
- the previous value associated with the specified key, or null if remapping function is gives null.
-
computeIfPresentAsync
public CompletableFuture<V> computeIfPresentAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, Metadata metadata) Description copied from interface:AdvancedCache
Overloadedinvalid reference
#computeIfPresentAsync(K, BiFunction)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
computeIfPresentAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedremappingFunction
- function to be applied to the specified key/valuemetadata
- information to store alongside the new value- Returns:
- the previous value associated with the specified key, or null if there was no mapping for the key.
-
computeIfAbsentAsync
public CompletableFuture<V> computeIfAbsentAsync(K key, Function<? super K, ? extends V> mappingFunction, Metadata metadata) Description copied from interface:AdvancedCache
Overloadedinvalid reference
#computeIfAbsentAsync(K, Function)
Metadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
computeIfAbsentAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key with which the specified value is associatedmappingFunction
- function to be applied to the specified keymetadata
- information to store alongside the new value- Returns:
- the value created with the mapping function associated with the specified key, or the previous value associated with the specified key if the key is not absent.
-
mergeAsync
public CompletableFuture<V> mergeAsync(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.merge(Object, Object, BiFunction, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
mergeAsync
in interfaceAsyncCache<K,
V> - Overrides:
mergeAsync
in classAbstractDelegatingCache<K,
V>
-
mergeAsync
public CompletableFuture<V> mergeAsync(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.merge(Object, Object, BiFunction, long, TimeUnit, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
mergeAsync
in interfaceAsyncCache<K,
V> - Overrides:
mergeAsync
in classAbstractDelegatingCache<K,
V>
-
mergeAsync
public CompletableFuture<V> mergeAsync(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction, Metadata metadata) Description copied from interface:AdvancedCache
OverloadedAsyncCache.mergeAsync(Object, Object, BiFunction)
, which takes in an instance ofMetadata
which can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc. TheMetadata
is only stored if the call is successful.- Specified by:
mergeAsync
in interfaceAdvancedCache<K,
V> - Parameters:
key
- , key with which the resulting value is to be associatedvalue
- , the non-null value to be merged with the existing value associated with the key or, if no existing value or a null value is associated with the key, to be associated with the keyremappingFunction
- , the function to recompute a value if presentmetadata
- , information to store alongside the new value- Returns:
- the new value associated with the specified key, or null if no value is associated with the key
-
computeAsync
public CompletableFuture<V> computeAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) Description copied from interface:AsyncCache
Asynchronous version ofConcurrentMap.compute(Object, BiFunction)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeAsync
in classAbstractDelegatingCache<K,
V>
-
computeAsync
public CompletableFuture<V> computeAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.compute(Object, BiFunction, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeAsync
in classAbstractDelegatingCache<K,
V>
-
computeAsync
public CompletableFuture<V> computeAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.compute(Object, BiFunction, long, TimeUnit, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeAsync
in classAbstractDelegatingCache<K,
V>
-
computeIfAbsentAsync
public CompletableFuture<V> computeIfAbsentAsync(K key, Function<? super K, ? extends V> mappingFunction) Description copied from interface:AsyncCache
Asynchronous version ofConcurrentMap.computeIfAbsent(Object, Function)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeIfAbsentAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeIfAbsentAsync
in classAbstractDelegatingCache<K,
V>
-
computeIfAbsentAsync
public CompletableFuture<V> computeIfAbsentAsync(K key, Function<? super K, ? extends V> mappingFunction, long lifespan, TimeUnit lifespanUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.computeIfAbsent(Object, Function, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeIfAbsentAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeIfAbsentAsync
in classAbstractDelegatingCache<K,
V>
-
computeIfAbsentAsync
public CompletableFuture<V> computeIfAbsentAsync(K key, Function<? super K, ? extends V> mappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.computeIfAbsent(Object, Function, long, TimeUnit, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeIfAbsentAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeIfAbsentAsync
in classAbstractDelegatingCache<K,
V>
-
computeIfPresentAsync
public CompletableFuture<V> computeIfPresentAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) Description copied from interface:AsyncCache
Asynchronous version ofConcurrentMap.computeIfPresent(Object, BiFunction)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeIfPresentAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeIfPresentAsync
in classAbstractDelegatingCache<K,
V>
-
computeIfPresentAsync
public CompletableFuture<V> computeIfPresentAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.computeIfPresent(Object, BiFunction, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeIfPresentAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeIfPresentAsync
in classAbstractDelegatingCache<K,
V>
-
computeIfPresentAsync
public CompletableFuture<V> computeIfPresentAsync(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) Description copied from interface:AsyncCache
Asynchronous version ofBasicCache.computeIfPresent(Object, BiFunction, long, TimeUnit, long, TimeUnit)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
computeIfPresentAsync
in interfaceAsyncCache<K,
V> - Overrides:
computeIfPresentAsync
in classAbstractDelegatingCache<K,
V>
-
mergeAsync
public CompletableFuture<V> mergeAsync(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction) Description copied from interface:AsyncCache
Asynchronous version ofConcurrentMap.merge(Object, Object, BiFunction)
. This method does not block on remote calls, even if your cache mode is synchronous.- Specified by:
mergeAsync
in interfaceAsyncCache<K,
V> - Overrides:
mergeAsync
in classAbstractDelegatingCache<K,
V>
-
putAll
Description copied from interface:AdvancedCache
An overloaded form ofMap.putAll(Map)
, which takes in an instance ofMetadata
which can be used to provide metadata information for the entries being stored, such as lifespan, version of value...etc.- Specified by:
putAll
in interfaceAdvancedCache<K,
V> - Parameters:
map
- the values to storemetadata
- information to store alongside the value(s)
-
putAllAsync
- Specified by:
putAllAsync
in interfaceAdvancedCache<K,
V>
-
cacheEntrySet
Description copied from interface:AdvancedCache
Identical toCache.entrySet()
but is typed to return CacheEntries instead of Entries. Please see the other method for a description of its behaviors.This method is needed since nested generics do not support covariance
- Specified by:
cacheEntrySet
in interfaceAdvancedCache<K,
V> - Returns:
- the entry set containing all of the CacheEntries
- See Also:
-
lockedStream
Description copied from interface:AdvancedCache
Returns a sequential stream using this Cache as the source. This stream is very similar to using theCacheStream
returned from theCacheCollection.stream()
method of the collection returned viaAdvancedCache.cacheEntrySet()
. The use of this locked stream is that when an entry is being processed by the user the entry is locked for the invocation preventing a different thread from modifying it.Note that this stream is not supported when using a optimistic transactional or simple cache. Both non transactional and pessimistic transactional caches are supported.
The stream will not share any ongoing transaction the user may have. Code executed by the stream should be treated as completely independent. That is any operation performed via the stream will require the user to start their own transaction or will be done intrinsically on the invocation. Note that if there is an ongoing transaction that has a lock on a key from the cache, that it will cause a deadlock.
Currently simple cache,
ConfigurationBuilder.simpleCache(boolean)
was set to true, and optimistic caches,TransactionConfigurationBuilder.lockingMode(LockingMode)
was set toLockingMode.OPTIMISTIC
, do not support this method. In this case it will throw anUnsupportedOperationException
. This restriction may be removed in a future version. Also this method cannot be used on a cache that has a lock owner already specified viaAdvancedCache.lockAs(Object)
as this could lead to a deadlock or the release of locks early and will throw anIllegalStateException
.- Specified by:
lockedStream
in interfaceAdvancedCache<K,
V> - Returns:
- the locked stream
-
removeLifespanExpired
Description copied from interface:AdvancedCache
Attempts to remove the entry if it is expired. Due to expired entries not being consistent across nodes, this will still attempt to remove the value if it is not present. Note that this will raise an expired event even if the entry is not present. Normally this method should never be invoked except by theExpirationManager
.This command will only remove the value if the value and lifespan also match if provided.
This method will suspend any ongoing transaction and start a new one just for the invocation of this command. It is automatically committed or rolled back after the command completes, either successfully or via an exception.
NOTE: This method may be removed at any point including in a minor release and is not supported for external usage.
- Specified by:
removeLifespanExpired
in interfaceAdvancedCache<K,
V> - Parameters:
key
- the key that is expiringvalue
- the value that mapped to the given. Null means it will match any valuelifespan
- the lifespan that should match. If null is provided it will match any lifespan value- Returns:
- if the entry was removed
-
removeMaxIdleExpired
Description copied from interface:AdvancedCache
Attempts to remove the entry for the given key, if it has expired due to max idle. This command first locks the key and then verifies that the entry has expired via maxIdle across all nodes. If it has this will then remove the given key.This method returns a boolean when it has determined if the entry has expired. This is useful for when a backup node invokes this command for a get that found the entry expired. This way the node can return back to the caller much faster when the entry is not expired and do any additional processing asynchronously if needed.
This method will suspend any ongoing transaction and start a new one just for the invocation of this command. It is automatically committed or rolled back after the command completes, either successfully or via an exception.
NOTE: This method may be removed at any point including in a minor release and is not supported for external usage.
- Specified by:
removeMaxIdleExpired
in interfaceAdvancedCache<K,
V> - Parameters:
key
- the key that expired via max idle for the given entry- Returns:
- if the entry was removed
-
withEncoding
Description copied from interface:AdvancedCache
Performs any cache operations using the specifiedEncoder
.- Specified by:
withEncoding
in interfaceAdvancedCache<K,
V> - Parameters:
encoder
-Encoder
used for both keys and values.- Returns:
- an instance of
AdvancedCache
where all operations will use the supplied encoder.
-
withEncoding
public AdvancedCache withEncoding(Class<? extends Encoder> keyEncoder, Class<? extends Encoder> valueEncoder) Description copied from interface:AdvancedCache
Performs any cache operations using the specified pair ofEncoder
.- Specified by:
withEncoding
in interfaceAdvancedCache<K,
V> - Parameters:
keyEncoder
-Encoder
for the keys.valueEncoder
-Encoder
for the values.- Returns:
- an instance of
AdvancedCache
where all operations will use the supplied encoders.
-
withKeyEncoding
- Specified by:
withKeyEncoding
in interfaceAdvancedCache<K,
V>
-
withWrapping
@Deprecated(forRemoval=true, since="11.0") public AdvancedCache<K,V> withWrapping(Class<? extends Wrapper> wrapper) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:AdvancedCache
Performs any cache operations using the specifiedWrapper
.- Specified by:
withWrapping
in interfaceAdvancedCache<K,
V> - Parameters:
wrapper
-Wrapper
for the keys and values.- Returns:
- an instance of
AdvancedCache
where all operations will use the supplied wrapper.
-
withMediaType
Description copied from interface:AdvancedCache
Perform any cache operations using an alternateMediaType
.- Specified by:
withMediaType
in interfaceAdvancedCache<K,
V> - Parameters:
keyMediaType
-MediaType
for the keys.valueMediaType
-org.infinispan.commons.dataconversion
for the values.- Returns:
- an instance of
AdvancedCache
where all data will formatted according to the suppliedMediaType
.
-
withMediaType
public <K1,V1> AdvancedCache<K1,V1> withMediaType(MediaType keyMediaType, MediaType valueMediaType) - Specified by:
withMediaType
in interfaceAdvancedCache<K,
V> - See Also:
-
withStorageMediaType
Description copied from interface:AdvancedCache
Perform any cache operations using the sameMediaType
of the cache storage. This is equivalent to disabling transcoding on the cache.- Specified by:
withStorageMediaType
in interfaceAdvancedCache<K,
V> - Returns:
- an instance of
AdvancedCache
where no data conversion will take place.
-
withWrapping
@Deprecated(forRemoval=true, since="11.0") public AdvancedCache<K,V> withWrapping(Class<? extends Wrapper> keyWrapper, Class<? extends Wrapper> valueWrapper) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:AdvancedCache
Performs any cache operations using the specified pair ofWrapper
.- Specified by:
withWrapping
in interfaceAdvancedCache<K,
V> - Parameters:
keyWrapper
-Wrapper
for the keys.valueWrapper
-Wrapper
for the values.- Returns:
AdvancedCache
where all operations will use the supplied wrappers.
-
rewrap
No generics because some methods returnAdvancedCache<?, ?>
, and returning the proper type would require erasure anyway. -
getKeyDataConversion
- Specified by:
getKeyDataConversion
in interfaceAdvancedCache<K,
V> - Returns:
- The associated
DataConversion
for the keys.
-
getValueDataConversion
- Specified by:
getValueDataConversion
in interfaceAdvancedCache<K,
V> - Returns:
- The associated
DataConversion
for the cache's values.
-
getAllAsync
Description copied from interface:AsyncCache
TODO This should be in AdvancedCache with getAll- Specified by:
getAllAsync
in interfaceAsyncCache<K,
V> - Overrides:
getAllAsync
in classAbstractDelegatingCache<K,
V>
-
removeAsyncEntry
Description copied from interface:AdvancedCache
An extension ofAsyncCache.removeAsync(Object)
, which returns aCacheEntry
instead of only the value.- Specified by:
removeAsyncEntry
in interfaceAdvancedCache<K,
V> - Parameters:
key
- key to remove- Returns:
- a future containing the
CacheEntry
removed ornull
if not found. - See Also:
-