Uses of Interface
com.google.common.cache.AbstractCache.StatsCounter
-
Packages that use AbstractCache.StatsCounter Package Description com.google.common.cache This package contains caching utilities. -
-
Uses of AbstractCache.StatsCounter in com.google.common.cache
Classes in com.google.common.cache that implement AbstractCache.StatsCounter Modifier and Type Class Description static class
AbstractCache.SimpleStatsCounter
A thread-safeAbstractCache.StatsCounter
implementation for use byCache
implementors.Fields in com.google.common.cache declared as AbstractCache.StatsCounter Modifier and Type Field Description (package private) AbstractCache.StatsCounter
LocalCache. globalStatsCounter
Accumulates global cache statistics.(package private) AbstractCache.StatsCounter
LocalCache.Segment. statsCounter
Accumulates cache statistics.Fields in com.google.common.cache with type parameters of type AbstractCache.StatsCounter Modifier and Type Field Description (package private) static Supplier<AbstractCache.StatsCounter>
CacheBuilder. CACHE_STATS_COUNTER
(package private) static Supplier<? extends AbstractCache.StatsCounter>
CacheBuilder. NULL_STATS_COUNTER
(package private) Supplier<? extends AbstractCache.StatsCounter>
CacheBuilder. statsCounterSupplier
Methods in com.google.common.cache that return types with arguments of type AbstractCache.StatsCounter Modifier and Type Method Description (package private) Supplier<? extends AbstractCache.StatsCounter>
CacheBuilder. getStatsCounterSupplier()
Methods in com.google.common.cache with parameters of type AbstractCache.StatsCounter Modifier and Type Method Description (package private) LocalCache.Segment<K,V>
LocalCache. createSegment(int initialCapacity, long maxSegmentWeight, AbstractCache.StatsCounter statsCounter)
void
AbstractCache.SimpleStatsCounter. incrementBy(AbstractCache.StatsCounter other)
Increments all counters by the values inother
.Constructors in com.google.common.cache with parameters of type AbstractCache.StatsCounter Constructor Description Segment(LocalCache<K,V> map, int initialCapacity, long maxSegmentWeight, AbstractCache.StatsCounter statsCounter)
-