Uses of Class
se.liu.ida.hefquin.engine.federation.access.impl.cache.CardinalityCacheKey
Packages that use CardinalityCacheKey
Package
Description
- 
Uses of CardinalityCacheKey in se.liu.ida.hefquin.engine.federation.access.impl
Classes in se.liu.ida.hefquin.engine.federation.access.impl that implement interfaces with type arguments of type CardinalityCacheKeyModifier and TypeClassDescriptionprotected static classFields in se.liu.ida.hefquin.engine.federation.access.impl with type parameters of type CardinalityCacheKeyModifier and TypeFieldDescriptionprotected final PersistableCardinalityCacheImpl<CardinalityCacheKey> FederationAccessManagerWithPersistedDiskCache.cardinalityCacheMethods in se.liu.ida.hefquin.engine.federation.access.impl that return types with arguments of type CardinalityCacheKeyModifier and TypeMethodDescriptionFederationAccessManagerWithChronicleMapCache.MyDefaultCardinalityCachePolicies.getReplacementPolicyFactory() - 
Uses of CardinalityCacheKey in se.liu.ida.hefquin.engine.federation.access.impl.cache
Classes in se.liu.ida.hefquin.engine.federation.access.impl.cache that implement interfaces with type arguments of type CardinalityCacheKeyModifier and TypeClassDescriptionclassA thread-safe persistent cache implementation for storing cardinality entries.Fields in se.liu.ida.hefquin.engine.federation.access.impl.cache with type parameters of type CardinalityCacheKeyModifier and TypeFieldDescriptionprotected final Map<CardinalityCacheKey, CardinalityCacheEntry> ChronicleMapCardinalityCache.mapprotected final CacheReplacementPolicy<CardinalityCacheKey, Integer, CardinalityCacheEntry> ChronicleMapCardinalityCache.replacementPolicyMethods in se.liu.ida.hefquin.engine.federation.access.impl.cache with parameters of type CardinalityCacheKeyModifier and TypeMethodDescriptionbooleanChronicleMapCardinalityCache.evict(CardinalityCacheKey key) Removes the cache entry associated with the given key from the cache.booleanChronicleMapCardinalityCache.evict(CardinalityCacheKey key, Integer value) Removes the specified entry from the cache only if the current value matches.booleanChronicleMapCardinalityCache.evict(CardinalityCacheKey key, CardinalityCacheEntry entry) Removes the specified entry from the cache only if the current value matches.ChronicleMapCardinalityCache.get(CardinalityCacheKey key) Retrieves the cache entry associated with the given key.voidChronicleMapCardinalityCache.put(CardinalityCacheKey key, Integer value) Adds a new value to the cache, associated with the given key.voidChronicleMapCardinalityCache.put(CardinalityCacheKey key, CardinalityCacheEntry entry) Adds a new cache entry to the cache, associated with the given key.Constructor parameters in se.liu.ida.hefquin.engine.federation.access.impl.cache with type arguments of type CardinalityCacheKeyModifierConstructorDescriptionChronicleMapCardinalityCache(CachePolicies<CardinalityCacheKey, Integer, CardinalityCacheEntry> policies) Constructs a newChronicleMapCardinalityCachewith the default cache file and the default capacity.ChronicleMapCardinalityCache(CachePolicies<CardinalityCacheKey, Integer, CardinalityCacheEntry> policies, int capacity) Constructs a newChronicleMapCardinalityCachewith the default cache file and a maximum capacity.ChronicleMapCardinalityCache(CachePolicies<CardinalityCacheKey, Integer, CardinalityCacheEntry> policies, int capacity, String filename) Constructs a newChronicleMapCardinalityCachewith a custom file path.