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.cache.impl org.infinispan.conflict This package contains the APIs that enable users to search for, and amend, data inconsistencies within their cache.org.infinispan.distexec Distributed Executor APIs (deprecated)org.infinispan.expiration.impl org.infinispan.factories Factories are internal components used to create other components based on a cache's configuration.org.infinispan.functional.impl org.infinispan.interceptors.impl Basic interceptorsorg.infinispan.scattered.impl org.infinispan.security Security API.org.infinispan.security.actions org.infinispan.security.impl org.infinispan.xsite -
-
Uses of AdvancedCache in org.infinispan
Classes in org.infinispan that implement AdvancedCache Modifier and Type Class Description class
AbstractDelegatingAdvancedCache<K,V>
Deprecated.Extend fromAbstractDelegatingAdvancedCache
instead.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.A cache manager, and all caches within it, can only have one classloader associated to it, so it's no longer possible to read cached data with a different classloader.AdvancedCache<?,?>
AdvancedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
Performs any cache operations using the specifiedEncoder
.AdvancedCache<?,?>
AdvancedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoder, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoder)
Performs any cache operations using the specified pair ofEncoder
.default AdvancedCache<K,V>
AdvancedCache. withFlags(Collection<Flag> flags)
An alternative towithFlags(Flag...)
not requiring array allocation.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)
AdvancedCache<?,?>
AdvancedCache. withMediaType(String keyMediaType, String valueMediaType)
Perform any cache operations using an alternateMediaType
.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)
Performs any cache operations using the specifiedWrapper
.AdvancedCache<K,V>
AdvancedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapper, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapper)
Performs any cache operations using the specified pair ofWrapper
.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.Constructors in org.infinispan with parameters of type AdvancedCache Constructor Description AbstractDelegatingAdvancedCache(AdvancedCache<K,V> cache)
Deprecated.AbstractDelegatingAdvancedCache(AdvancedCache<K,V> cache, AbstractDelegatingAdvancedCache.AdvancedCacheWrapper<K,V> wrapper)
Deprecated. -
Uses of AdvancedCache in org.infinispan.cache.impl
Classes in org.infinispan.cache.impl that implement AdvancedCache Modifier and Type Class Description class
AbstractDelegatingAdvancedCache<K,V>
Similar toAbstractDelegatingCache
, but forAdvancedCache
.class
CacheImpl<K,V>
class
DecoratedCache<K,V>
A decorator to a cache, which can be built with a specific set ofFlag
s.class
EncoderCache<K,V>
Cache decoration that makes use of theEncoder
andWrapper
to convert between storage value and read/write value.class
SimpleCacheImpl<K,V>
Simple local cache without interceptor stack.class
StatsCollectingCache<K,V>
Wraps existingAdvancedCache
to collect statisticsFields in org.infinispan.cache.impl declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. cache
Methods in org.infinispan.cache.impl that return AdvancedCache Modifier and Type Method Description AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. getAdvancedCache()
AdvancedCache<K,V>
AbstractDelegatingCache. getAdvancedCache()
AdvancedCache<K,V>
CacheImpl. getAdvancedCache()
AdvancedCache<K,V>
SimpleCacheImpl. getAdvancedCache()
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. lockAs(Object lockOwner)
AdvancedCache<K,V>
CacheImpl. lockAs(Object lockOwner)
AdvancedCache<K,V>
DecoratedCache. lockAs(Object lockOwner)
AdvancedCache<K,V>
SimpleCacheImpl. lockAs(Object lockOwner)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. noFlags()
AdvancedCache<K,V>
CacheImpl. noFlags()
AdvancedCache<K,V>
DecoratedCache. noFlags()
AdvancedCache<K,V>
SimpleCacheImpl. noFlags()
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
CacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
SimpleCacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. with(ClassLoader classLoader)
AdvancedCache<K,V>
CacheImpl. with(ClassLoader classLoader)
AdvancedCache<K,V>
DecoratedCache. with(ClassLoader classLoader)
AdvancedCache<K,V>
SimpleCacheImpl. with(ClassLoader classLoader)
AdvancedCache<K,V>
StatsCollectingCache. with(ClassLoader classLoader)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoder, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoder)
AdvancedCache<K,V>
CacheImpl. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoderClass)
AdvancedCache<K,V>
CacheImpl. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoderClass, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoderClass)
AdvancedCache<K,V>
DecoratedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoderClass)
AdvancedCache<K,V>
DecoratedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoderClass, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoderClass)
AdvancedCache<K,V>
EncoderCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoderClass)
AdvancedCache<K,V>
EncoderCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoderClass, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoderClass)
AdvancedCache<?,?>
SimpleCacheImpl. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
AdvancedCache<?,?>
SimpleCacheImpl. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoder, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoder)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withFlags(Collection<Flag> flags)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withFlags(Flag... flags)
AdvancedCache<K,V>
CacheImpl. withFlags(Collection<Flag> flags)
AdvancedCache<K,V>
CacheImpl. withFlags(Flag... flags)
AdvancedCache<K,V>
DecoratedCache. withFlags(Collection<Flag> flags)
AdvancedCache<K,V>
DecoratedCache. withFlags(Flag... flags)
AdvancedCache<K,V>
SimpleCacheImpl. withFlags(Collection<Flag> flags)
AdvancedCache<K,V>
SimpleCacheImpl. withFlags(Flag... flags)
AdvancedCache<K,V>
StatsCollectingCache. withFlags(Flag... flags)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withKeyEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
AdvancedCache<?,?>
CacheImpl. withKeyEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoderClass)
AdvancedCache<K,V>
EncoderCache. withKeyEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoderClass)
AdvancedCache<Object,Object>
SimpleCacheImpl. withKeyEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withMediaType(String keyMediaType, String valueMediaType)
AdvancedCache<K,V>
CacheImpl. withMediaType(String keyMediaType, String valueMediaType)
AdvancedCache<K,V>
EncoderCache. withMediaType(String keyMediaType, String valueMediaType)
AdvancedCache<?,?>
SimpleCacheImpl. withMediaType(String keyMediaType, String valueMediaType)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withSubject(Subject subject)
AdvancedCache<K,V>
CacheImpl. withSubject(Subject subject)
AdvancedCache<K,V>
SimpleCacheImpl. withSubject(Subject subject)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> wrapper)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapper, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapper)
AdvancedCache<K,V>
CacheImpl. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> wrapperClass)
AdvancedCache<K,V>
CacheImpl. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapperClass, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapperClass)
AdvancedCache<K,V>
DecoratedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> wrapperClass)
AdvancedCache<K,V>
DecoratedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapperClass, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapperClass)
AdvancedCache<K,V>
EncoderCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> wrapper)
AdvancedCache<K,V>
EncoderCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapperClass, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapperClass)
AdvancedCache<K,V>
SimpleCacheImpl. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> wrapper)
AdvancedCache<K,V>
SimpleCacheImpl. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapper, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapper)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache.AdvancedCacheWrapper. wrap(AdvancedCache<K,V> cache)
default AdvancedCache<K,V>
AbstractDelegatingAdvancedCache.AdvancedCacheWrapper. wrap(AdvancedCache<K,V> self, AdvancedCache<K,V> newDelegate)
Methods in org.infinispan.cache.impl with parameters of type AdvancedCache Modifier and Type Method Description EncoderCache<K,V>
EncoderCache. withCache(AdvancedCache<K,V> otherCache)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache.AdvancedCacheWrapper. wrap(AdvancedCache<K,V> cache)
default AdvancedCache<K,V>
AbstractDelegatingAdvancedCache.AdvancedCacheWrapper. wrap(AdvancedCache<K,V> self, AdvancedCache<K,V> newDelegate)
Method parameters in org.infinispan.cache.impl with type arguments of type AdvancedCache Modifier and Type Method Description AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
AbstractDelegatingAdvancedCache. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
CacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
CacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
SimpleCacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
SimpleCacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
Constructors in org.infinispan.cache.impl with parameters of type AdvancedCache Constructor Description AbstractDelegatingAdvancedCache(AdvancedCache<K,V> cache)
AbstractDelegatingAdvancedCache(AdvancedCache<K,V> cache, AbstractDelegatingAdvancedCache.AdvancedCacheWrapper<K,V> wrapper)
DecoratedCache(AdvancedCache<K,V> delegate)
DecoratedCache(AdvancedCache<K,V> delegate, Object lockOwner, Flag... flags)
DecoratedCache(AdvancedCache<K,V> delegate, Collection<Flag> flags)
DecoratedCache(AdvancedCache<K,V> delegate, Flag... flags)
EncoderCache(AdvancedCache<K,V> cache, DataConversion keyDataConversion, DataConversion valueDataConversion)
-
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.distexec
Fields in org.infinispan.distexec declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache
DefaultExecutorService. cache
Deprecated. -
Uses of AdvancedCache in org.infinispan.expiration.impl
Fields in org.infinispan.expiration.impl declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache<K,V>
ClusterExpirationManager. cache
-
Uses of AdvancedCache in org.infinispan.factories
Constructors in org.infinispan.factories with parameters of type AdvancedCache Constructor Description BootstrapFactory(AdvancedCache<?,?> advancedCache, Configuration configuration, ComponentRegistry componentRegistry)
ComponentRegistry(String cacheName, Configuration configuration, AdvancedCache<?,?> cache, GlobalComponentRegistry globalComponents, ClassLoader defaultClassLoader)
Creates an instance of the component registry. -
Uses of AdvancedCache in org.infinispan.functional.impl
Methods in org.infinispan.functional.impl with parameters of type AdvancedCache Modifier and Type Method Description static <K,V>
FunctionalMapImpl<K,V>FunctionalMapImpl. create(AdvancedCache<K,V> cache)
static <K,V>
FunctionalMapImpl<K,V>FunctionalMapImpl. create(Params params, AdvancedCache<K,V> cache)
-
Uses of AdvancedCache in org.infinispan.interceptors.impl
Methods in org.infinispan.interceptors.impl that return AdvancedCache Modifier and Type Method Description AdvancedCache
PrefetchInterceptor. getCacheWithFlags(FlagAffectedCommand command)
Methods in org.infinispan.interceptors.impl with parameters of type AdvancedCache Modifier and Type Method Description static int
CacheMgmtInterceptor. calculateRequiredMinimumNumberOfNodes(AdvancedCache<?,?> cache)
-
Uses of AdvancedCache in org.infinispan.scattered.impl
Methods in org.infinispan.scattered.impl with parameters of type AdvancedCache Modifier and Type Method Description void
BiasManagerImpl. init(AdvancedCache cache, Configuration configuration, TimeService timeService, DistributionManager distributionManager, CommandsFactory commandsFactory, RpcManager rpcManager, KeyPartitioner keyPartitioner, ScheduledExecutorService executor)
-
Uses of AdvancedCache in org.infinispan.security
Subinterfaces of AdvancedCache in org.infinispan.security Modifier and Type Interface Description interface
SecureCache<K,V>
SecureCache. -
Uses of AdvancedCache in org.infinispan.security.actions
Constructors in org.infinispan.security.actions with parameters of type AdvancedCache Constructor Description GetCacheAuthorizationManagerAction(AdvancedCache<?,?> cache)
GetCacheAvailabilityAction(AdvancedCache<?,?> cache)
GetCacheComponentRegistryAction(AdvancedCache<?,?> cache)
GetCacheConfigurationAction(AdvancedCache<?,?> cache)
GetCacheDistributionManagerAction(AdvancedCache<?,?> cache)
GetCacheEntryAction(AdvancedCache<?,?> cache, K key)
GetCacheGlobalComponentRegistryAction(AdvancedCache<?,?> cache)
GetCacheInterceptorChainAction(AdvancedCache<?,?> cache)
GetCacheLockManagerAction(AdvancedCache<?,?> cache)
GetCacheRpcManagerAction(AdvancedCache<?,?> cache)
GetCacheStatusAction(AdvancedCache<?,?> cache)
SetCacheAvailabilityAction(AdvancedCache<?,?> cache, AvailabilityMode availabilityMode)
-
Uses of AdvancedCache in org.infinispan.security.impl
Classes in org.infinispan.security.impl that implement AdvancedCache Modifier and Type Class Description class
SecureCacheImpl<K,V>
SecureCacheImpl.Methods in org.infinispan.security.impl that return AdvancedCache Modifier and Type Method Description AdvancedCache<K,V>
SecureCacheImpl. getAdvancedCache()
AdvancedCache<K,V>
SecureCacheImpl. getDelegate()
AdvancedCache<K,V>
SecureCacheImpl. lockAs(Object lockOwner)
AdvancedCache<K,V>
SecureCacheImpl. noFlags()
AdvancedCache<K,V>
SecureCacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
SecureCacheImpl. with(ClassLoader classLoader)
AdvancedCache<?,?>
SecureCacheImpl. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoderClass)
AdvancedCache<?,?>
SecureCacheImpl. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> keyEncoderClass, Class<? extends org.infinispan.commons.dataconversion.Encoder> valueEncoderClass)
AdvancedCache<K,V>
SecureCacheImpl. withFlags(Collection<Flag> flags)
AdvancedCache<K,V>
SecureCacheImpl. withFlags(Flag... flags)
AdvancedCache<?,?>
SecureCacheImpl. withKeyEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)
AdvancedCache<?,?>
SecureCacheImpl. withMediaType(String keyMediaType, String valueMediaType)
AdvancedCache<K,V>
SecureCacheImpl. withSubject(Subject subject)
AdvancedCache<K,V>
SecureCacheImpl. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> wrapperClass)
AdvancedCache<K,V>
SecureCacheImpl. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapperClass, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapperClass)
Method parameters in org.infinispan.security.impl with type arguments of type AdvancedCache Modifier and Type Method Description AdvancedCache<K,V>
SecureCacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
AdvancedCache<K,V>
SecureCacheImpl. transform(Function<AdvancedCache<K,V>,? extends AdvancedCache<K,V>> transformation)
Constructors in org.infinispan.security.impl with parameters of type AdvancedCache Constructor Description SecureCacheImpl(AdvancedCache<K,V> delegate)
-
Uses of AdvancedCache in org.infinispan.xsite
Fields in org.infinispan.xsite declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache<Object,Object>
BaseBackupReceiver. cache
Methods in org.infinispan.xsite with parameters of type AdvancedCache Modifier and Type Method Description protected static XSiteStatePushCommand
BaseBackupReceiver. newStatePushCommand(AdvancedCache<?,?> cache, List<XSiteState> stateList)
-