Uses of Class
org.infinispan.eviction.EvictionType
-
Packages that use EvictionType Package Description org.infinispan.configuration.cache Cacheconfigurationorg.infinispan.container.offheap org.infinispan.eviction Classes related to eviction. -
-
Uses of EvictionType in org.infinispan.configuration.cache
Fields in org.infinispan.configuration.cache with type parameters of type EvictionType Modifier and Type Field Description static AttributeDefinition<EvictionType>MemoryStorageConfiguration. EVICTION_TYPEMethods in org.infinispan.configuration.cache that return EvictionType Modifier and Type Method Description EvictionTypeMemoryConfiguration. evictionType()The configured eviction typeEvictionTypeMemoryConfigurationBuilder. evictionType()The configured eviction type, please seeMemoryConfigurationBuilder.evictionType(EvictionType).EvictionTypeMemoryStorageConfiguration. evictionType()EvictionTypeMemoryStorageConfigurationBuilder. evictionType()Methods in org.infinispan.configuration.cache with parameters of type EvictionType Modifier and Type Method Description MemoryConfigurationBuilderMemoryConfigurationBuilder. evictionType(EvictionType type)Sets the eviction type which can either be COUNT - entries will be evicted when the number of entries exceeds theMemoryConfigurationBuilder.size(long)MEMORY - entries will be evicted when the approximate combined size of all values exceeds theMemoryConfigurationBuilder.size(long)Cache size is guaranteed not to exceed upper limit specified by size.MemoryStorageConfigurationBuilderMemoryStorageConfigurationBuilder. evictionType(EvictionType type) -
Uses of EvictionType in org.infinispan.container.offheap
Constructors in org.infinispan.container.offheap with parameters of type EvictionType Constructor Description BoundedOffHeapDataContainer(int addressCount, long maxSize, EvictionType type)SegmentedBoundedOffHeapDataContainer(int addressCount, int numSegments, long maxSize, EvictionType type) -
Uses of EvictionType in org.infinispan.eviction
Methods in org.infinispan.eviction that return EvictionType Modifier and Type Method Description static EvictionTypeEvictionType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EvictionType[]EvictionType. values()Returns an array containing the constants of this enum type, in the order they are declared.
-