Uses of Class
com.github.benmanes.caffeine.jcache.Expirable
Packages that use Expirable
Package
Description
-
Uses of Expirable in com.github.benmanes.caffeine.jcache
Methods in com.github.benmanes.caffeine.jcache that return types with arguments of type ExpirableModifier and TypeMethodDescriptionCacheProxy.getAndFilterExpiredEntries(Set<? extends K> keys, boolean updateAccessTime) Returns all of the mappings present, expiring as required, and optionally updates their access expiry time.Methods in com.github.benmanes.caffeine.jcache with parameters of type ExpirableModifier and TypeMethodDescriptionprotected final @Nullable VReturns a copy of the value if value-based caching is enabled.protected final voidCacheProxy.setAccessExpirationTime(K key, Expirable<?> expirable, long currentTimeMS) Sets the access expiration time.Method parameters in com.github.benmanes.caffeine.jcache with type arguments of type ExpirableModifier and TypeMethodDescriptionReturns a deep copy of the map if value-based caching is enabled.Constructor parameters in com.github.benmanes.caffeine.jcache with type arguments of type ExpirableModifierConstructorDescriptionCacheProxy(String name, Executor executor, javax.cache.CacheManager cacheManager, CaffeineConfiguration<K, V> configuration, Cache<K, Expirable<V>> cache, EventDispatcher<K, V> dispatcher, Optional<javax.cache.integration.CacheLoader<K, V>> cacheLoader, javax.cache.expiry.ExpiryPolicy expiry, Ticker ticker, JCacheStatisticsMXBean statistics) LoadingCacheProxy(String name, Executor executor, javax.cache.CacheManager cacheManager, CaffeineConfiguration<K, V> configuration, LoadingCache<K, Expirable<V>> cache, EventDispatcher<K, V> dispatcher, javax.cache.integration.CacheLoader<K, V> cacheLoader, javax.cache.expiry.ExpiryPolicy expiry, Ticker ticker, JCacheStatisticsMXBean statistics) -
Uses of Expirable in com.github.benmanes.caffeine.jcache.event
Methods in com.github.benmanes.caffeine.jcache.event with parameters of type ExpirableModifier and TypeMethodDescriptionvoidJCacheEvictionListener.onRemoval(K key, @Nullable Expirable<V> expirable, RemovalCause cause) -
Uses of Expirable in com.github.benmanes.caffeine.jcache.integration
Methods in com.github.benmanes.caffeine.jcache.integration that return ExpirableMethods in com.github.benmanes.caffeine.jcache.integration that return types with arguments of type Expirable