Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for notifyNewValue (0.05 seconds)

  1. guava/src/com/google/common/cache/LocalCache.java

        /**
         * Notify pending loads that a new value was set. This is only relevant to loading value
         * references.
         */
        void notifyNewValue(@Nullable V newValue);
    
        /**
         * Returns true if a new value is currently loading, regardless of whether there is an existing
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 19:35:11 GMT 2025
    - 148.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        @Override
        public boolean isActive() {
          return !loading;
        }
    
        @Override
        public V waitForValue() {
          return get();
        }
    
        @Override
        public void notifyNewValue(V newValue) {}
    
        public void clear() {
          value = null;
        }
      }
    
      private static class SerializableCacheLoader extends CacheLoader<Object, Object>
          implements Serializable {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 12 00:25:21 GMT 2025
    - 117.5K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        @Override
        public boolean isActive() {
          return !loading;
        }
    
        @Override
        public V waitForValue() {
          return get();
        }
    
        @Override
        public void notifyNewValue(V newValue) {}
    
        public void clear() {
          value = null;
        }
      }
    
      private static class SerializableCacheLoader extends CacheLoader<Object, Object>
          implements Serializable {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 12 00:25:21 GMT 2025
    - 115.9K bytes
    - Click Count (0)
Back to Top