Uses of Interface
org.infinispan.AdvancedCache
-
Packages that use AdvancedCache Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.org.infinispan.conflict This package contains the APIs that enable users to search for, and amend, data inconsistencies within their cache.org.infinispan.security Security API. -
-
Uses of AdvancedCache in org.infinispan
Methods in org.infinispan that return AdvancedCache Modifier and Type Method Description AdvancedCache<K,V>
Cache. getAdvancedCache()
AdvancedCache<K,V>
AdvancedCache. lockAs(Object lockOwner)
Whenever this cache acquires a lock it will do so using the given Object as the owner of said lock.default AdvancedCache<K,V>
AdvancedCache. noFlags()
Unset all flags set on this cache usingwithFlags(Flag...)
orwithFlags(Collection)
methods.default AdvancedCache<K,V>
AdvancedCache. 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<K,V>
AdvancedCache. with(ClassLoader classLoader)
Deprecated.Since 9.4, unmarshalling always uses the classloader from the global configuration.AdvancedCache<?,?>
AdvancedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
Deprecated.Since 12.1, to be removed in a future version.AdvancedCache<?,?>
AdvancedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoder, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoder)
Deprecated.Since 12.1, to be removed in a future version.default AdvancedCache<K,V>
AdvancedCache. withFlags(Collection<Flag> flags)
An alternative towithFlags(Flag...)
not requiring array allocation.default AdvancedCache<K,V>
AdvancedCache. withFlags(Flag flag)
An alternative towithFlags(Flag...)
optimized for a single flag.AdvancedCache<K,V>
AdvancedCache. withFlags(Flag... flags)
A method that adds flags to any API call.AdvancedCache<?,?>
AdvancedCache. withKeyEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
Deprecated.Since 12.1, to be removed in a future version.AdvancedCache<?,?>
AdvancedCache. withMediaType(String keyMediaType, String valueMediaType)
Deprecated.UsewithMediaType(MediaType, MediaType)
instead.<K1,V1>
AdvancedCache<K1,V1>AdvancedCache. withMediaType(org.infinispan.commons.dataconversion.MediaType keyMediaType, org.infinispan.commons.dataconversion.MediaType valueMediaType)
AdvancedCache<K,V>
AdvancedCache. withStorageMediaType()
Perform any cache operations using the sameMediaType
of the cache storage.AdvancedCache<K,V>
AdvancedCache. withSubject(Subject subject)
Performs any cache operations using the specifiedSubject
.AdvancedCache<K,V>
AdvancedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> wrapper)
Deprecated.Since 11.0.AdvancedCache<K,V>
AdvancedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapper, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapper)
Deprecated.Since 11.0.Method parameters in org.infinispan with type arguments of type AdvancedCache Modifier and Type Method Description default AdvancedCache<K,V>
AdvancedCache. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
Apply thetransformation
on eachAdvancedCache
instance in a delegation chain, starting with the innermost implementation.default AdvancedCache<K,V>
AdvancedCache. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
Apply thetransformation
on eachAdvancedCache
instance in a delegation chain, starting with the innermost implementation. -
Uses of AdvancedCache in org.infinispan.conflict
Methods in org.infinispan.conflict with parameters of type AdvancedCache Modifier and Type Method Description static <K,V>
ConflictManager<K,V>ConflictManagerFactory. get(AdvancedCache<K,V> cache)
-
Uses of AdvancedCache in org.infinispan.security
Subinterfaces of AdvancedCache in org.infinispan.security Modifier and Type Interface Description interface
SecureCache<K,V>
SecureCache.
-