Uses of Interface
com.github.benmanes.caffeine.cache.stats.StatsCounter
Packages that use StatsCounter
Package
Description
This package contains caching utilities.
This package contains caching statistic utilities.
-
Uses of StatsCounter in com.github.benmanes.caffeine.cache
Fields in com.github.benmanes.caffeine.cache declared as StatsCounterModifier and TypeFieldDescriptionprivate final StatsCounter
LocalCacheFactory.SILiS.statsCounter
private final StatsCounter
LocalCacheFactory.SIS.statsCounter
private final StatsCounter
LocalCacheFactory.SSLiS.statsCounter
private final StatsCounter
LocalCacheFactory.SSS.statsCounter
private final StatsCounter
LocalCacheFactory.WILiS.statsCounter
private final StatsCounter
LocalCacheFactory.WIS.statsCounter
private final StatsCounter
LocalCacheFactory.WSLiS.statsCounter
private final StatsCounter
LocalCacheFactory.WSS.statsCounter
(package private) final StatsCounter
UnboundedLocalCache.statsCounter
Fields in com.github.benmanes.caffeine.cache with type parameters of type StatsCounterModifier and TypeFieldDescription(package private) static final Supplier<StatsCounter>
Caffeine.ENABLED_STATS_COUNTER_SUPPLIER
(package private) Supplier<StatsCounter>
Caffeine.statsCounterSupplier
Methods in com.github.benmanes.caffeine.cache that return StatsCounterModifier and TypeMethodDescriptionBoundedLocalCache.statsCounter()
LocalCache.statsCounter()
Returns theStatsCounter
used by this cache.final StatsCounter
LocalCacheFactory.SILiS.statsCounter()
final StatsCounter
LocalCacheFactory.SIS.statsCounter()
final StatsCounter
LocalCacheFactory.SSLiS.statsCounter()
final StatsCounter
LocalCacheFactory.SSS.statsCounter()
final StatsCounter
LocalCacheFactory.WILiS.statsCounter()
final StatsCounter
LocalCacheFactory.WIS.statsCounter()
final StatsCounter
LocalCacheFactory.WSLiS.statsCounter()
final StatsCounter
LocalCacheFactory.WSS.statsCounter()
UnboundedLocalCache.statsCounter()
Methods in com.github.benmanes.caffeine.cache that return types with arguments of type StatsCounterModifier and TypeMethodDescription(package private) Supplier<? extends StatsCounter>
Caffeine.getStatsCounterSupplier()
Method parameters in com.github.benmanes.caffeine.cache with type arguments of type StatsCounterModifier and TypeMethodDescriptionCaffeine.recordStats
(Supplier<? extends StatsCounter> statsCounterSupplier) Enables the accumulation ofCacheStats
during 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 StatsCounterModifier and TypeClassDescriptionfinal class
A thread-safeStatsCounter
implementation for use byCache
implementors.(package private) enum
AStatsCounter
implementation that does not record any cache events.(package private) final class
AStatsCounter
implementation that suppresses and logs any exception thrown by the delegate statsCounter.Fields in com.github.benmanes.caffeine.cache.stats declared as StatsCounterModifier and TypeFieldDescription(package private) final StatsCounter
GuardedStatsCounter.delegate
Methods in com.github.benmanes.caffeine.cache.stats that return StatsCounterModifier and TypeMethodDescriptionstatic StatsCounter
StatsCounter.disabledStatsCounter()
Returns an accumulator that does not record any cache events.static StatsCounter
StatsCounter.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 StatsCounterModifier and TypeMethodDescriptionstatic StatsCounter
StatsCounter.guardedStatsCounter
(StatsCounter statsCounter) Returns an accumulator that suppresses and logs any exception thrown by the delegate statsCounter.void
ConcurrentStatsCounter.incrementBy
(StatsCounter other) Increments all counters by the values inother
.Constructors in com.github.benmanes.caffeine.cache.stats with parameters of type StatsCounter