Package org.infinispan.container.entries
Class CacheEntrySizeCalculator<K,V>
- java.lang.Object
-
- org.infinispan.commons.util.AbstractEntrySizeCalculatorHelper<K,InternalCacheEntry<K,V>>
-
- org.infinispan.container.entries.CacheEntrySizeCalculator<K,V>
-
- Type Parameters:
K
- The type of the keyV
- The type of the value
- All Implemented Interfaces:
org.infinispan.commons.util.EntrySizeCalculator<K,InternalCacheEntry<K,V>>
,KeyValueMetadataSizeCalculator<K,V>
public class CacheEntrySizeCalculator<K,V> extends org.infinispan.commons.util.AbstractEntrySizeCalculatorHelper<K,InternalCacheEntry<K,V>> implements KeyValueMetadataSizeCalculator<K,V>
Implementation of a size calculator that calcultes only the size of the value assuming it is an InternalCacheEntry. This delegates the calculation of the key and the value contained within the InternalCacheEntry to the provided SizeCalculator.- Since:
- 8.0
- Author:
- William Burns
-
-
Constructor Summary
Constructors Constructor Description CacheEntrySizeCalculator(org.infinispan.commons.util.EntrySizeCalculator<? super K,? super V> calculator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
calculateSize(K key, InternalCacheEntry<K,V> ice)
Method used to calculate how much memory in size the key and value use.long
calculateSize(K key, V value, Metadata metadata)
Method used to calculate how much memory in size the key, value and metadata use.
-
-
-
Method Detail
-
calculateSize
public long calculateSize(K key, InternalCacheEntry<K,V> ice)
Description copied from interface:org.infinispan.commons.util.EntrySizeCalculator
Method used to calculate how much memory in size the key and value use.
-
calculateSize
public long calculateSize(K key, V value, Metadata metadata)
Description copied from interface:KeyValueMetadataSizeCalculator
Method used to calculate how much memory in size the key, value and metadata use.- Specified by:
calculateSize
in interfaceKeyValueMetadataSizeCalculator<K,V>
- Parameters:
key
- The key for this entry to be used in size calculationvalue
- The value for this entry to be used in size calculationmetadata
- The metadata for this entry to be used in size calculation- Returns:
- The size approximately in memory the key, value and metadata use.
-
-