Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for removeEldestEntry (0.07 seconds)

  1. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/CapacityEnforcingMap.java

        super(initialCapacity, loadFactor, accessOrder);
        this.maximumSize = maximumSize;
        this.statsCounter = statsCounter;
        this.removalListener = removalListener;
      }
    
      @Override
      protected boolean removeEldestEntry(Entry<K, Timestamped<V>> ignored) {
        boolean removal = (maximumSize == LocalCache.UNSET_INT) ? false : (size() > maximumSize);
        if ((removalListener != null) && removal) {
          removalListener.onRemoval(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 13:13:59 GMT 2026
    - 2.1K bytes
    - Click Count (0)
Back to Top