Uses of Interface
se.liu.ida.hefquin.base.datastructures.impl.cache.CachePolicies
Packages that use CachePolicies
Package
Description
-
Uses of CachePolicies in se.liu.ida.hefquin.base.datastructures.impl.cache
Fields in se.liu.ida.hefquin.base.datastructures.impl.cache declared as CachePoliciesModifier and TypeFieldDescriptionprotected final CachePolicies<IdType, ObjectType, EntryType> GenericCacheImpl.policiesConstructors in se.liu.ida.hefquin.base.datastructures.impl.cache with parameters of type CachePoliciesModifierConstructorDescriptionGenericCacheImpl(int capacity, CachePolicies<IdType, ObjectType, EntryType> policies) -
Uses of CachePolicies in se.liu.ida.hefquin.federation.access.impl
Classes in se.liu.ida.hefquin.federation.access.impl that implement CachePoliciesModifier and TypeClassDescriptionprotected static classstatic classDefault cache policies forHierarchicalCache.Constructors in se.liu.ida.hefquin.federation.access.impl with parameters of type CachePoliciesModifierConstructorDescriptionFederationAccessManagerWithCache(FederationAccessManager fedAccMan, int cacheCapacity, CachePolicies<FederationAccessManagerWithCache.Key, CompletableFuture<? extends DataRetrievalResponse<?>>, ? extends CacheEntry<CompletableFuture<? extends DataRetrievalResponse<?>>>> cachePolicies) -
Uses of CachePolicies in se.liu.ida.hefquin.federation.access.impl.cache
Constructors in se.liu.ida.hefquin.federation.access.impl.cache with parameters of type CachePoliciesModifierConstructorDescriptionCacheLayer(Map<IdType, EntryType> map, int capacity, CachePolicies<IdType, ObjectType, EntryType> policies) Creates a cache layer with the specified capacity and cache policies. -
Uses of CachePolicies in se.liu.ida.hefquin.federation.access.impl.cache.chroniclemap
Constructors in se.liu.ida.hefquin.federation.access.impl.cache.chroniclemap with parameters of type CachePoliciesModifierConstructorDescriptionChronicleMapCache(int capacity, String filename, CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Creates a cache with the given capacity and file path.ChronicleMapCache(int capacity, CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Creates a cache with the given capacity and the default file path.ChronicleMapCache(String filename, CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Constructs a newChronicleMapCachewith a custom file path and the default cache capacity.ChronicleMapCache(CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Creates a cache with the default capacity and default file path. -
Uses of CachePolicies in se.liu.ida.hefquin.federation.access.impl.cache.mapdb
Constructors in se.liu.ida.hefquin.federation.access.impl.cache.mapdb with parameters of type CachePoliciesModifierConstructorDescriptionMapDBCache(int capacity, String filename, CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Creates a cache with the given capacity and file path.MapDBCache(int capacity, CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Creates a cache with the given capacity and the default file path.MapDBCache(String filename, CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Constructs a newMapDBCachewith a custom file path and the default cache capacity.MapDBCache(CachePolicies<PersistentCacheKey, CompletableFuture<? extends DataRetrievalResponse<?>>, PersistentCacheEntry> policies) Creates a cache with the default capacity and default file path.