Uses of Interface
org.infinispan.CacheCollection
-
Packages that use CacheCollection Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.org.infinispan.interceptors.distribution Interceptors dealing with command replication in distributed/replicated mode.org.infinispan.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. -
-
Uses of CacheCollection in org.infinispan
Subinterfaces of CacheCollection in org.infinispan Modifier and Type Interface Description interfaceCacheSet<E>A set that also must implement the variousCacheCollectionmethods for streams.Methods in org.infinispan that return CacheCollection Modifier and Type Method Description CacheCollection<V>Cache. values()Returns a collection view of the values contained in this cache across the entire cluster. -
Uses of CacheCollection in org.infinispan.interceptors.distribution
Classes in org.infinispan.interceptors.distribution that implement CacheCollection Modifier and Type Class Description protected static classDistributionBulkInterceptor.BackingEntrySet<K,V>protected static classDistributionBulkInterceptor.BackingKeySet<K,V>protected static classDistributionBulkInterceptor.TxBackingEntrySet<K,V> -
Uses of CacheCollection in org.infinispan.util
Classes in org.infinispan.util that implement CacheCollection Modifier and Type Class Description classAbstractDelegatingCacheCollection<E>classAbstractDelegatingCacheSet<E>Same asAbstractDelegatingCacheCollectionexcept this method implements Set as well.classCacheCollectionMapper<E,R>Deprecated.since 9.2.1 It is recommended to useWriteableCacheCollectionMapperinstead as it allows for constant time contains and other operationsclassCacheSetMapper<E,R>ACacheSetthat allows for a different set to be mapped as a different instance wtih values replaced on request.classWriteableCacheCollectionMapper<E,R>A writeable cache collection mapper that also has constant time operations for things such asCollection.contains(Object)if the underlying Collection does.classWriteableCacheSetMapper<E,R>A writeable cache set mapper that also has constant time operations for things such asCollection.contains(Object)if the underlying Set does.Fields in org.infinispan.util declared as CacheCollection Modifier and Type Field Description protected CacheCollection<E>CacheCollectionMapper. realCacheCollectionDeprecated.protected CacheCollection<E>WriteableCacheCollectionMapper. realCacheCollectionMethods in org.infinispan.util that return CacheCollection Modifier and Type Method Description protected abstract CacheCollection<E>AbstractDelegatingCacheCollection. delegate()Constructors in org.infinispan.util with parameters of type CacheCollection Constructor Description CacheCollectionMapper(CacheCollection<E> realCollection, Function<? super E,? extends R> mapper)Deprecated.CacheCollection that maps entries to new type that takes a key filter that isFunction.identity()CacheCollectionMapper(CacheCollection<E> realCollection, Function<? super E,? extends R> mapper, InjectiveFunction<Object,?> keyFilterMapper)Deprecated.CacheCollection that maps entries to new type that takes a provided key filter.WriteableCacheCollectionMapper(CacheCollection<E> realCollection, Function<? super E,? extends R> toNewTypeFunction, Function<? super E,? extends R> toNewTypeIteratorFunction, Function<? super R,? extends E> fromNewTypeFunction, InjectiveFunction<Object,?> keyFilterFunction)WriteableCacheCollectionMapper(CacheCollection<E> realCollection, Function<? super E,? extends R> toNewTypeFunction, Function<? super R,? extends E> fromNewTypeFunction, InjectiveFunction<Object,?> keyFilterFunction)
-