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 (package private) StatsCounterSILS. statsCounter(package private) StatsCounterSIS. statsCounter(package private) StatsCounterSSLS. statsCounter(package private) StatsCounterSSS. statsCounter(package private) StatsCounterUnboundedLocalCache. statsCounter(package private) StatsCounterWILS. statsCounter(package private) StatsCounterWIS. statsCounter(package private) StatsCounterWSLS. statsCounter(package private) StatsCounterWSS. 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) @Nullable java.util.function.Supplier<StatsCounter>Caffeine. statsCounterSupplierMethods in com.github.benmanes.caffeine.cache that return StatsCounter Modifier and Type Method Description StatsCounterBoundedLocalCache. statsCounter()@NonNull StatsCounterLocalCache. statsCounter()Returns theStatsCounterused by this cache.StatsCounterSILS. statsCounter()StatsCounterSIS. statsCounter()StatsCounterSSLS. statsCounter()StatsCounterSSS. statsCounter()StatsCounterUnboundedLocalCache. statsCounter()StatsCounterWILS. statsCounter()StatsCounterWIS. statsCounter()StatsCounterWSLS. statsCounter()StatsCounterWSS. statsCounter()Methods in com.github.benmanes.caffeine.cache that return types with arguments of type StatsCounter Modifier and Type Method Description (package private) @NonNull java.util.function.Supplier<StatsCounter>Caffeine. getStatsCounterSupplier()Method parameters in com.github.benmanes.caffeine.cache with type arguments of type StatsCounter Modifier and Type Method Description @NonNull Caffeine<K,V>Caffeine. recordStats(@NonNull 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 @NonNull StatsCounterStatsCounter. disabledStatsCounter()Returns an accumulator that does not record any cache events.static @NonNull StatsCounterStatsCounter. guardedStatsCounter(@NonNull StatsCounter statsCounter)Returns an accumulator that suppresses and logs any exception thrown by the delegatestatsCounter.Methods in com.github.benmanes.caffeine.cache.stats with parameters of type StatsCounter Modifier and Type Method Description static @NonNull StatsCounterStatsCounter. guardedStatsCounter(@NonNull StatsCounter statsCounter)Returns an accumulator that suppresses and logs any exception thrown by the delegatestatsCounter.voidConcurrentStatsCounter. incrementBy(@NonNull 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)
-