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 TypeFieldDescription(package private) final StatsCounter
SILS.statsCounter
(package private) final StatsCounter
SIS.statsCounter
(package private) final StatsCounter
SSLS.statsCounter
(package private) final StatsCounter
SSS.statsCounter
(package private) final StatsCounter
UnboundedLocalCache.statsCounter
(package private) final StatsCounter
WILS.statsCounter
(package private) final StatsCounter
WIS.statsCounter
(package private) final StatsCounter
WSLS.statsCounter
(package private) final StatsCounter
WSS.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) @Nullable Supplier
<StatsCounter> Caffeine.statsCounterSupplier
Methods in com.github.benmanes.caffeine.cache that return StatsCounterModifier and TypeMethodDescriptionBoundedLocalCache.statsCounter()
@NonNull StatsCounter
LocalCache.statsCounter()
Returns theStatsCounter
used by this cache.final StatsCounter
SILS.statsCounter()
final StatsCounter
SIS.statsCounter()
final StatsCounter
SSLS.statsCounter()
final StatsCounter
SSS.statsCounter()
UnboundedLocalCache.statsCounter()
final StatsCounter
WILS.statsCounter()
final StatsCounter
WIS.statsCounter()
final StatsCounter
WSLS.statsCounter()
final StatsCounter
WSS.statsCounter()
Methods in com.github.benmanes.caffeine.cache that return types with arguments of type StatsCounterModifier and TypeMethodDescription(package private) @NonNull Supplier
<StatsCounter> Caffeine.getStatsCounterSupplier()
Method parameters in com.github.benmanes.caffeine.cache with type arguments of type StatsCounterModifier and TypeMethodDescriptionCaffeine.recordStats
(@NonNull 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 @NonNull StatsCounter
StatsCounter.disabledStatsCounter()
Returns an accumulator that does not record any cache events.static @NonNull StatsCounter
StatsCounter.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 StatsCounterModifier and TypeMethodDescriptionstatic @NonNull StatsCounter
StatsCounter.guardedStatsCounter
(@NonNull StatsCounter statsCounter) Returns an accumulator that suppresses and logs any exception thrown by the delegatestatsCounter
.void
ConcurrentStatsCounter.incrementBy
(@NonNull StatsCounter other) Increments all counters by the values inother
.Constructors in com.github.benmanes.caffeine.cache.stats with parameters of type StatsCounter