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 StatsCounter
LocalCacheFactory.SILiS. statsCounter
private StatsCounter
LocalCacheFactory.SIS. statsCounter
private StatsCounter
LocalCacheFactory.SSLiS. statsCounter
private StatsCounter
LocalCacheFactory.SSS. statsCounter
private StatsCounter
LocalCacheFactory.WILiS. statsCounter
private StatsCounter
LocalCacheFactory.WIS. statsCounter
private StatsCounter
LocalCacheFactory.WSLiS. statsCounter
private StatsCounter
LocalCacheFactory.WSS. statsCounter
(package private) StatsCounter
UnboundedLocalCache. statsCounter
Fields 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. statsCounterSupplier
Methods in com.github.benmanes.caffeine.cache that return StatsCounter Modifier and Type Method Description StatsCounter
BoundedLocalCache. statsCounter()
StatsCounter
LocalCache. statsCounter()
Returns theStatsCounter
used by this cache.StatsCounter
LocalCacheFactory.SILiS. statsCounter()
StatsCounter
LocalCacheFactory.SIS. statsCounter()
StatsCounter
LocalCacheFactory.SSLiS. statsCounter()
StatsCounter
LocalCacheFactory.SSS. statsCounter()
StatsCounter
LocalCacheFactory.WILiS. statsCounter()
StatsCounter
LocalCacheFactory.WIS. statsCounter()
StatsCounter
LocalCacheFactory.WSLiS. statsCounter()
StatsCounter
LocalCacheFactory.WSS. statsCounter()
StatsCounter
UnboundedLocalCache. 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 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 StatsCounter Modifier and Type Class Description class
ConcurrentStatsCounter
A thread-safeStatsCounter
implementation for use byCache
implementors.(package private) class
DisabledStatsCounter
AStatsCounter
implementation that does not record any cache events.(package private) class
GuardedStatsCounter
AStatsCounter
implementation 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) StatsCounter
GuardedStatsCounter. delegate
Methods in com.github.benmanes.caffeine.cache.stats that return StatsCounter Modifier and Type Method Description static 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 StatsCounter Modifier and Type Method Description static 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 Constructor Description GuardedStatsCounter(StatsCounter delegate)
-