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.factories Factories are internal components used to create other components based on a cache's configuration.org.infinispan.query.clustered org.infinispan.query.clustered.commandworkers org.infinispan.rest.cachemanager Cache manager wrapper for REST interface.org.infinispan.security Security API.org.infinispan.security.actions org.infinispan.server.core org.infinispan.server.hotrod org.infinispan.server.hotrod.tx org.infinispan.server.hotrod.tx.operation org.infinispan.server.memcached 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(java.lang.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(java.util.function.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(java.lang.ClassLoader classLoader)
Deprecated.Since 9.4, the classloader is ignored.AdvancedCache<?,?>
AdvancedCache. withEncoding(java.lang.Class<? extends Encoder> encoder)
Performs any cache operations using the specifiedEncoder
.AdvancedCache<?,?>
AdvancedCache. withEncoding(java.lang.Class<? extends Encoder> keyEncoder, java.lang.Class<? extends Encoder> valueEncoder)
Performs any cache operations using the specified pair ofEncoder
.default AdvancedCache<K,V>
AdvancedCache. withFlags(java.util.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(java.lang.Class<? extends Encoder> encoder)
AdvancedCache<?,?>
AdvancedCache. withMediaType(java.lang.String keyMediaType, java.lang.String valueMediaType)
Perform any cache operations using an alternateMediaType
.AdvancedCache<K,V>
AdvancedCache. withSubject(javax.security.auth.Subject subject)
Performs any cache operations using the specifiedSubject
.AdvancedCache<K,V>
AdvancedCache. withWrapping(java.lang.Class<? extends Wrapper> wrapper)
Performs any cache operations using the specifiedWrapper
.AdvancedCache<K,V>
AdvancedCache. withWrapping(java.lang.Class<? extends Wrapper> keyWrapper, java.lang.Class<? extends 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(java.util.function.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(java.util.function.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, org.infinispan.cache.impl.AbstractDelegatingAdvancedCache.AdvancedCacheWrapper<K,V> wrapper)
Deprecated. -
Uses of AdvancedCache in org.infinispan.cache.impl
Classes in org.infinispan.cache.impl with annotations of type with type parameters of type that implement declared as with annotations of type with type parameters of type with annotations of type with annotations of type with type parameters of type that return that return types with arguments of type with parameters of type with type arguments of type that throw with annotations of type with annotations of type with parameters of type with type arguments of type that throw AdvancedCache Modifier and Type Class Description class
org.infinispan.cache.impl.AbstractDelegatingAdvancedCache<K,V>
Similar toAbstractDelegatingCache
, but forAdvancedCache
. -
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.factories
Constructors in org.infinispan.factories with parameters of type AdvancedCache Constructor Description ComponentRegistry(java.lang.String cacheName, Configuration configuration, AdvancedCache<?,?> cache, GlobalComponentRegistry globalComponents, java.lang.ClassLoader defaultClassLoader)
Creates an instance of the component registry. -
Uses of AdvancedCache in org.infinispan.query.clustered
Methods in org.infinispan.query.clustered with parameters of type AdvancedCache Modifier and Type Method Description QueryResponse
ClusteredQueryCommand. perform(AdvancedCache<?,?> cache)
Constructors in org.infinispan.query.clustered with parameters of type AdvancedCache Constructor Description ClusteredCacheQueryImpl(org.apache.lucene.search.Query luceneQuery, org.hibernate.search.spi.SearchIntegrator searchFactory, java.util.concurrent.ExecutorService asyncExecutor, AdvancedCache<?,?> cache, org.infinispan.query.backend.KeyTransformationHandler keyTransformationHandler, java.lang.Class<?>... classes)
ClusteredCacheQueryImpl(org.infinispan.query.impl.QueryDefinition queryDefinition, java.util.concurrent.ExecutorService asyncExecutor, AdvancedCache<?,?> cache, org.infinispan.query.backend.KeyTransformationHandler keyTransformationHandler, org.hibernate.search.spi.IndexedTypeMap<org.hibernate.search.spi.CustomTypeMetadata> metadata)
-
Uses of AdvancedCache in org.infinispan.query.clustered.commandworkers
Methods in org.infinispan.query.clustered.commandworkers with parameters of type AdvancedCache Modifier and Type Method Description QueryResponse
CQCommandType. perform(AdvancedCache<?,?> cache, org.infinispan.query.impl.QueryDefinition queryDefinition, java.util.UUID queryId, int docIndex)
-
Uses of AdvancedCache in org.infinispan.rest.cachemanager
Methods in org.infinispan.rest.cachemanager that return AdvancedCache Modifier and Type Method Description AdvancedCache<java.lang.Object,V>
RestCacheManager. getCache(java.lang.String name, javax.security.auth.Subject subject)
AdvancedCache<java.lang.Object,V>
RestCacheManager. getCache(java.lang.String name, MediaType keyContentType, MediaType valueContentType, javax.security.auth.Subject subject)
Methods in org.infinispan.rest.cachemanager with parameters of type AdvancedCache Modifier and Type Method Description CacheEntry<java.lang.Object,V>
RestCacheManager. getInternalEntry(AdvancedCache<java.lang.Object,V> cache, java.lang.Object key, boolean skipListener)
CacheEntry<java.lang.Object,V>
RestCacheManager. getPrivilegedInternalEntry(AdvancedCache<java.lang.Object,V> cache, java.lang.Object key, boolean skipListener)
-
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.server.core
Methods in org.infinispan.server.core with parameters of type AdvancedCache Modifier and Type Method Description byte[]
QueryFacade. query(AdvancedCache<byte[],byte[]> cache, byte[] query)
-
Uses of AdvancedCache in org.infinispan.server.hotrod
Methods in org.infinispan.server.hotrod that return AdvancedCache Modifier and Type Method Description AdvancedCache<byte[],byte[]>
HotRodServer. cache(HotRodHeader header, javax.security.auth.Subject subject)
AdvancedCache<byte[],byte[]>
HotRodServer. cache(HotRodHeader header, javax.security.auth.Subject subject, java.lang.String cacheName)
Methods in org.infinispan.server.hotrod with parameters of type AdvancedCache Modifier and Type Method Description HotRodServer.CacheInfo
HotRodServer. getCacheInfo(AdvancedCache<byte[],byte[]> cache, HotRodHeader header)
-
Uses of AdvancedCache in org.infinispan.server.hotrod.tx
Methods in org.infinispan.server.hotrod.tx that return AdvancedCache Modifier and Type Method Description <K,V>
AdvancedCache<K,V>PrepareCoordinator. decorateCache(AdvancedCache<K,V> cache)
Decorates the cache with the transaction created.Methods in org.infinispan.server.hotrod.tx with parameters of type AdvancedCache Modifier and Type Method Description <K,V>
AdvancedCache<K,V>PrepareCoordinator. decorateCache(AdvancedCache<K,V> cache)
Decorates the cache with the transaction created.Constructors in org.infinispan.server.hotrod.tx with parameters of type AdvancedCache Constructor Description PrepareCoordinator(AdvancedCache<byte[],byte[]> cache, XidImpl xid, boolean recoverable, long transactionTimeout)
-
Uses of AdvancedCache in org.infinispan.server.hotrod.tx.operation
Methods in org.infinispan.server.hotrod.tx.operation with parameters of type AdvancedCache Modifier and Type Method Description static void
Util. commitLocalTransaction(AdvancedCache<?,?> cache, XidImpl xid, long timeout)
static void
Util. rollbackLocalTransaction(AdvancedCache<?,?> cache, XidImpl xid, long timeout)
-
Uses of AdvancedCache in org.infinispan.server.memcached
Constructors in org.infinispan.server.memcached with parameters of type AdvancedCache Constructor Description MemcachedDecoder(AdvancedCache<byte[],byte[]> memcachedCache, java.util.concurrent.ScheduledExecutorService scheduler, NettyTransport transport, java.util.function.Predicate<? super java.lang.String> ignoreCache, MediaType valuePayload)
-
Uses of AdvancedCache in org.infinispan.xsite
Fields in org.infinispan.xsite declared as AdvancedCache Modifier and Type Field Description protected AdvancedCache<java.lang.Object,java.lang.Object>
BaseBackupReceiver. cache
-