Uses of Interface
com.github.benmanes.caffeine.cache.stats.StatsCounter
-
Packages that use StatsCounter Package Description com.github.benmanes.caffeine.cache This package contains caching utilities.com.github.benmanes.caffeine.cache.stats This package contains caching statistic utilities. -
-
Uses of StatsCounter in com.github.benmanes.caffeine.cache
Fields in com.github.benmanes.caffeine.cache declared as StatsCounter Modifier and Type Field Description private StatsCounterLocalCacheFactory.SILiS. statsCounterprivate StatsCounterLocalCacheFactory.SIS. statsCounterprivate StatsCounterLocalCacheFactory.SSLiS. statsCounterprivate StatsCounterLocalCacheFactory.SSS. statsCounterprivate StatsCounterLocalCacheFactory.WILiS. statsCounterprivate StatsCounterLocalCacheFactory.WIS. statsCounterprivate StatsCounterLocalCacheFactory.WSLiS. statsCounterprivate StatsCounterLocalCacheFactory.WSS. statsCounter(package private) StatsCounterUnboundedLocalCache. statsCounterFields in com.github.benmanes.caffeine.cache with type parameters of type StatsCounter Modifier and Type Field Description (package private) static java.util.function.Supplier<StatsCounter>Caffeine. ENABLED_STATS_COUNTER_SUPPLIER(package private) java.util.function.Supplier<StatsCounter>Caffeine. statsCounterSupplierMethods in com.github.benmanes.caffeine.cache that return StatsCounter Modifier and Type Method Description StatsCounterBoundedLocalCache. statsCounter()StatsCounterLocalCache. statsCounter()Returns theStatsCounterused by this cache.StatsCounterLocalCacheFactory.SILiS. statsCounter()StatsCounterLocalCacheFactory.SIS. statsCounter()StatsCounterLocalCacheFactory.SSLiS. statsCounter()StatsCounterLocalCacheFactory.SSS. statsCounter()StatsCounterLocalCacheFactory.WILiS. statsCounter()StatsCounterLocalCacheFactory.WIS. statsCounter()StatsCounterLocalCacheFactory.WSLiS. statsCounter()StatsCounterLocalCacheFactory.WSS. statsCounter()StatsCounterUnboundedLocalCache. statsCounter()Methods in com.github.benmanes.caffeine.cache that return types with arguments of type StatsCounter Modifier and Type Method Description (package private) java.util.function.Supplier<? extends StatsCounter>Caffeine. getStatsCounterSupplier()Method parameters in com.github.benmanes.caffeine.cache with type arguments of type StatsCounter Modifier and Type Method Description Caffeine<K,V>Caffeine. recordStats(java.util.function.Supplier<? extends StatsCounter> statsCounterSupplier)Enables the accumulation ofCacheStatsduring the operation of the cache. -
Uses of StatsCounter in com.github.benmanes.caffeine.cache.stats
Classes in com.github.benmanes.caffeine.cache.stats that implement StatsCounter Modifier and Type Class Description classConcurrentStatsCounterA thread-safeStatsCounterimplementation for use byCacheimplementors.(package private) classDisabledStatsCounterAStatsCounterimplementation that does not record any cache events.(package private) classGuardedStatsCounterAStatsCounterimplementation that suppresses and logs any exception thrown by the delegate statsCounter.Fields in com.github.benmanes.caffeine.cache.stats declared as StatsCounter Modifier and Type Field Description (package private) StatsCounterGuardedStatsCounter. delegateMethods in com.github.benmanes.caffeine.cache.stats that return StatsCounter Modifier and Type Method Description static StatsCounterStatsCounter. disabledStatsCounter()Returns an accumulator that does not record any cache events.static StatsCounterStatsCounter. guardedStatsCounter(StatsCounter statsCounter)Returns an accumulator that suppresses and logs any exception thrown by the delegate statsCounter.Methods in com.github.benmanes.caffeine.cache.stats with parameters of type StatsCounter Modifier and Type Method Description static StatsCounterStatsCounter. guardedStatsCounter(StatsCounter statsCounter)Returns an accumulator that suppresses and logs any exception thrown by the delegate statsCounter.voidConcurrentStatsCounter. incrementBy(StatsCounter other)Increments all counters by the values inother.Constructors in com.github.benmanes.caffeine.cache.stats with parameters of type StatsCounter Constructor Description GuardedStatsCounter(StatsCounter delegate)
-