34353637383940
public InstrumentingCache(String type, ICache<K, V> map) { this.map = map; this.type = type; this.metrics = new CacheMetrics(type, map); }
105106107108109110111
} public void clear() { map.clear(); metrics = new CacheMetrics(type, map); }