Uses of Interface
org.infinispan.CacheSet
-
Packages that use CacheSet 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.rest.operations.mediatypes org.infinispan.server.hotrod 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 CacheSet in org.infinispan
Methods in org.infinispan that return CacheSet Modifier and Type Method Description CacheSet<CacheEntry<K,V>>AdvancedCache. cacheEntrySet()Identical toCache.entrySet()but is typed to return CacheEntries instead of Entries.CacheSet<Map.Entry<K,V>>Cache. entrySet()Returns a set view of the mappings contained in this cache and cache loader across the entire cluster.CacheSet<K>Cache. keySet()Returns a set view of the keys contained in this cache and cache loader across the entire cluster. -
Uses of CacheSet in org.infinispan.interceptors.distribution
Classes in org.infinispan.interceptors.distribution that implement CacheSet Modifier and Type Class Description protected static classDistributionBulkInterceptor.BackingEntrySet<K,V>protected static classDistributionBulkInterceptor.BackingKeySet<K,V>protected static classDistributionBulkInterceptor.TxBackingEntrySet<K,V>Fields in org.infinispan.interceptors.distribution declared as CacheSet Modifier and Type Field Description protected CacheSet<CacheEntry<K,V>>DistributionBulkInterceptor.BackingEntrySet. entrySetprotected CacheSet<K>DistributionBulkInterceptor.BackingKeySet. keySetConstructors in org.infinispan.interceptors.distribution with parameters of type CacheSet Constructor Description BackingKeySet(Cache<K,V> cache, CacheSet<K> keySet, org.infinispan.commands.FlagAffectedCommand command) -
Uses of CacheSet in org.infinispan.rest.operations.mediatypes
Methods in org.infinispan.rest.operations.mediatypes with parameters of type CacheSet Modifier and Type Method Description byte[]OutputPrinter. print(String cacheName, CacheSet<?> cacheSet, Charset charset)Converts all values in the cache to a desired output format. -
Uses of CacheSet in org.infinispan.server.hotrod
Methods in org.infinispan.server.hotrod with parameters of type CacheSet Modifier and Type Method Description io.netty.buffer.ByteBufAbstractEncoder1x. bulkGetResponse(HotRodHeader header, HotRodServer server, io.netty.buffer.ByteBufAllocator alloc, int size, CacheSet<Map.Entry<byte[],byte[]>> entries)io.netty.buffer.ByteBufVersionedEncoder. bulkGetResponse(HotRodHeader header, HotRodServer server, io.netty.buffer.ByteBufAllocator alloc, int size, CacheSet<Map.Entry<byte[],byte[]>> entries) -
Uses of CacheSet in org.infinispan.util
Classes in org.infinispan.util that implement CacheSet Modifier and Type Class Description classAbstractDelegatingCacheSet<E>Same asAbstractDelegatingCacheCollectionexcept this method implements Set as well.classCacheSetMapper<E,R>ACacheSetthat allows for a different set to be mapped as a different instance wtih values replaced on request.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 CacheSet Modifier and Type Field Description protected CacheSet<E>CacheSetMapper. realSetMethods in org.infinispan.util that return CacheSet Modifier and Type Method Description protected abstract CacheSet<E>AbstractDelegatingCacheSet. delegate()Constructors in org.infinispan.util with parameters of type CacheSet Constructor Description CacheSetMapper(CacheSet<E> realSet, Function<? super E,? extends R> mapper)WriteableCacheSetMapper(CacheSet<E> realSet, InjectiveFunction<? super E,? extends R> toNewTypeFunction, InjectiveFunction<? super E,? extends R> toNewTypeIteratorFunction, InjectiveFunction<? super R,? extends E> fromNewTypeFunction, InjectiveFunction<Object,?> keyFilterFunction)WriteableCacheSetMapper(CacheSet<E> realSet, InjectiveFunction<? super E,? extends R> toNewTypeFunction, InjectiveFunction<? super R,? extends E> fromNewTypeFunction, InjectiveFunction<Object,?> keyFilterFunction)
-