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.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.reactive.publisher.impl org.infinispan.security Security API.org.infinispan.security.actions org.infinispan.security.impl -
-
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 thetransformationon eachAdvancedCacheinstance 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)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.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)AdvancedCache<?,?>AdvancedCache. withMediaType(String keyMediaType, String valueMediaType)Perform any cache operations using an alternateMediaType.AdvancedCache<K,V>AdvancedCache. withStorageMediaType()Perform any cache operations using the sameMediaTypeof 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 thetransformationon eachAdvancedCacheinstance 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 thetransformationon eachAdvancedCacheinstance in a delegation chain, starting with the innermost implementation. -
Uses of AdvancedCache in org.infinispan.cache.impl
Classes in org.infinispan.cache.impl that implement AdvancedCache Modifier and Type Class Description classAbstractDelegatingAdvancedCache<K,V>Similar toAbstractDelegatingCache, but forAdvancedCache.classCacheImpl<K,V>classDecoratedCache<K,V>A decorator to a cache, which can be built with a specific set ofFlags.classEncoderCache<K,V>Cache decoration that makes use of theEncoderandWrapperto convert between storage value and read/write value.classSimpleCacheImpl<K,V>Simple local cache without interceptor stack.classStatsCollectingCache<K,V>Wraps existingAdvancedCacheto collect statisticsFields in org.infinispan.cache.impl declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache<K,V>AbstractDelegatingAdvancedCache. cacheMethods 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()abstract AdvancedCacheAbstractDelegatingAdvancedCache. rewrap(AdvancedCache newDelegate)No generics because some methods returnAdvancedCache<?, ?>, and returning the proper type would require erasure anyway.AdvancedCacheDecoratedCache. rewrap(AdvancedCache newDelegate)AdvancedCacheEncoderCache. rewrap(AdvancedCache newDelegate)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<?,?>AbstractDelegatingAdvancedCache. withEncoding(Class<? extends org.infinispan.commons.dataconversion.Encoder> encoder)AdvancedCacheAbstractDelegatingAdvancedCache. 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 flag)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<?,?>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<?,?>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. withStorageMediaType()AdvancedCache<K,V>CacheImpl. withStorageMediaType()AdvancedCache<K,V>EncoderCache. withStorageMediaType()AdvancedCache<K,V>SimpleCacheImpl. withStorageMediaType()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)Deprecated.AdvancedCache<K,V>AbstractDelegatingAdvancedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapper, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapper)Deprecated.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)Deprecated.AdvancedCache<K,V>DecoratedCache. withWrapping(Class<? extends org.infinispan.commons.dataconversion.Wrapper> keyWrapperClass, Class<? extends org.infinispan.commons.dataconversion.Wrapper> valueWrapperClass)Deprecated.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)Methods in org.infinispan.cache.impl with parameters of type AdvancedCache Modifier and Type Method Description abstract AdvancedCacheAbstractDelegatingAdvancedCache. rewrap(AdvancedCache newDelegate)No generics because some methods returnAdvancedCache<?, ?>, and returning the proper type would require erasure anyway.AdvancedCacheDecoratedCache. rewrap(AdvancedCache newDelegate)AdvancedCacheEncoderCache. rewrap(AdvancedCache 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)EncoderCache(AdvancedCache<K,V> cache, InternalEntryFactory entryFactory, BasicComponentRegistry componentRegistry, 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.expiration.impl
Fields in org.infinispan.expiration.impl declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache<K,V>ClusterExpirationManager. cacheFields in org.infinispan.expiration.impl with type parameters of type AdvancedCache Modifier and Type Field Description protected ComponentRef<AdvancedCache<K,V>>ClusterExpirationManager. cacheRef -
Uses of AdvancedCache in org.infinispan.factories
Methods in org.infinispan.factories that return types with arguments of type AdvancedCache Modifier and Type Method Description ComponentRef<AdvancedCache>ComponentRegistry. getCache()Constructors in org.infinispan.factories with parameters of type AdvancedCache Constructor Description 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
Fields in org.infinispan.interceptors.impl with type parameters of type AdvancedCache Modifier and Type Field Description protected ComponentRef<AdvancedCache<K,V>>PrefetchInterceptor. cacheMethods in org.infinispan.interceptors.impl that return AdvancedCache Modifier and Type Method Description AdvancedCachePrefetchInterceptor. getCacheWithFlags(FlagAffectedCommand command)Methods in org.infinispan.interceptors.impl with parameters of type AdvancedCache Modifier and Type Method Description static intCacheMgmtInterceptor. calculateRequiredMinimumNumberOfNodes(AdvancedCache<?,?> cache, ComponentRegistry componentRegistry) -
Uses of AdvancedCache in org.infinispan.reactive.publisher.impl
Fields in org.infinispan.reactive.publisher.impl declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache<K,V>LocalPublisherManagerImpl. cacheprotected AdvancedCache<K,V>LocalPublisherManagerImpl. remoteCache -
Uses of AdvancedCache in org.infinispan.security
Subinterfaces of AdvancedCache in org.infinispan.security Modifier and Type Interface Description interfaceSecureCache<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)GetCacheEntryAsyncAction(AdvancedCache<?,?> cache, K key)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 classSecureCacheImpl<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. withStorageMediaType()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)
-